forked from Archives/Athou_commafeed
20 lines
373 B
YAML
20 lines
373 B
YAML
version: "3.1"
|
|
|
|
services:
|
|
mysql:
|
|
image: mariadb
|
|
environment:
|
|
- MYSQL_ROOT_PASSWORD=commafeed
|
|
- MYSQL_DATABASE=commafeed
|
|
ports:
|
|
- "3306:3306"
|
|
|
|
postgresql:
|
|
image: postgres
|
|
environment:
|
|
- POSTGRES_USER=commafeed
|
|
- POSTGRES_PASSWORD=commafeed
|
|
- POSTGRES_DB=commafeed
|
|
ports:
|
|
- "5432:5432"
|