mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-18 06:46:00 +00:00
41 lines
810 B
YAML
41 lines
810 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
|
|
|
|
mysql-ssh-login:
|
|
build: containers/mysql-ssh-login
|
|
restart: always
|
|
ports:
|
|
- 16005:3306
|
|
- 16006:22
|
|
|
|
mysql-ssh-keyfile:
|
|
build: containers/mysql-ssh-keyfile
|
|
restart: always
|
|
ports:
|
|
- 16007:3306
|
|
- 16008:22
|
|
|
|
dex:
|
|
image: dexidp/dex:v2.35.3
|
|
ports:
|
|
- "16009:5556"
|
|
volumes:
|
|
- ./dex-config.yaml:/etc/dex/cfg/config.yaml
|
|
command: ["dex", "serve", "/etc/dex/cfg/config.yaml"]
|