add makefile and local test for pb mysql to avoid uploading garbage

This commit is contained in:
collerek
2021-03-10 09:06:23 +01:00
parent b8a85436f7
commit f6c845c318
4 changed files with 42 additions and 1 deletions

View 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