s1llyw0rdz/docker-compose.yml
2025-11-19 19:12:26 -05:00

16 lines
413 B
YAML
Executable file

services:
status:
build: .
ports:
- "8798:8000"
env_file: .env # copy .env.example to .env for this to work
volumes:
- .:/var/www/status:rw
- ./assets/style2.css:/var/www/status/assets/style2.css
postgres:
image: postgres:13
env_file: .env # copy .env.example to .env for this to work
volumes:
- ./db:/var/lib/postgresql/data
ports:
- "5433:5432"