add makefile and local test for pb mysql to avoid uploading garbage
This commit is contained in:
20
scripts/docker-compose.yml
Normal file
20
scripts/docker-compose.yml
Normal file
@ -0,0 +1,20 @@
|
||||
version: '2.1'
|
||||
services:
|
||||
postgres:
|
||||
image: postgres:10.8
|
||||
environment:
|
||||
POSTGRES_USER: username
|
||||
POSTGRES_PASSWORD: password
|
||||
POSTGRES_DB: testsuite
|
||||
ports:
|
||||
- 5432:5432
|
||||
|
||||
mysql:
|
||||
image: mysql:5.7
|
||||
environment:
|
||||
MYSQL_USER: username
|
||||
MYSQL_PASSWORD: password
|
||||
MYSQL_ROOT_PASSWORD: password
|
||||
MYSQL_DATABASE: testsuite
|
||||
ports:
|
||||
- 3306:3306
|
||||
Reference in New Issue
Block a user