route96/docker-compose.prod.yml
kieran c8da87e0dd
All checks were successful
continuous-integration/drone Build is passing
feat: rename / upgrades
2024-09-22 14:26:59 +01:00

21 lines
392 B
YAML

volumes:
db:
files:
services:
db:
image: mariadb
environment:
- "MARIADB_ROOT_PASSWORD=root"
- "MARIADB_DATABASE=route96"
volumes:
- "db:/var/lib/mysql"
app:
image: voidic/route96
#build: .
environment:
- "RUST_LOG=info"
ports:
- "8000:8000"
volumes:
- "files:/app/data"
- "./config.prod.toml:/app/config.toml"