adding mysql support, table creation tested, TODO schema

This commit is contained in:
ycc
2023-06-27 23:19:50 +02:00
parent cf652439b4
commit 974fab1d64
8 changed files with 368 additions and 19 deletions

29
docker-compose.yml Normal file
View File

@@ -0,0 +1,29 @@
version: '3.1'
services:
pg:
image: postgres:alpine
restart: always
environment:
POSTGRES_USER: test
POSTGRES_PASSWORD: test
ports:
- 5432:5432
my:
image: mariadb:latest
restart: always
environment:
MYSQL_DATABASE: test
MYSQL_USER: test
MYSQL_PASSWORD: test
MARIADB_ROOT_PASSWORD: root
ports:
- 3306:3306
adminer:
image: adminer
restart: always
ports:
- 8080:8080