21 lines
348 B
YAML
21 lines
348 B
YAML
version: "3"
|
|
|
|
services:
|
|
mysql:
|
|
image: mysql:8
|
|
restart: always
|
|
env_file: .mysql.env
|
|
ports:
|
|
- "3306:3306"
|
|
volumes:
|
|
- "/mysql:/var/lib/mysql"
|
|
|
|
postgres:
|
|
image: postgres:17
|
|
restart: always
|
|
env_file: .postgres.env
|
|
ports:
|
|
- "5432:5432"
|
|
volumes:
|
|
- "/postgres:/var/lib/postgresql/data"
|