mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-18 12:35:59 +00:00
19 lines
362 B
YAML
19 lines
362 B
YAML
version: '3'
|
|
services:
|
|
postgres:
|
|
image: postgres
|
|
restart: always
|
|
environment:
|
|
POSTGRES_PASSWORD: Pwd2020Db
|
|
ports:
|
|
- 16000:5432
|
|
|
|
mariadb:
|
|
image: mariadb
|
|
command: --default-authentication-plugin=mysql_native_password
|
|
restart: always
|
|
ports:
|
|
- 16004:3306
|
|
environment:
|
|
- MYSQL_ROOT_PASSWORD=Pwd2020Db
|