s1llyw0rdz/docker-compose.yml
2025-11-22 00:44:49 -05:00

16 lines
418 B
YAML
Executable file

services:
status:
build: .
ports:
- "8888:8888"
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:
- ./sillydb:/var/lib/postgresql/data
ports:
- "5433:5432"