s1llyw0rdz/docker-compose.yml

24 lines
602 B
YAML
Raw Normal View History

2024-12-29 07:34:13 +00:00
services:
status:
build: .
ports:
- "8798:8000"
environment:
- DATABASE_URL=postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${POSTGRES_DB}:5432/status?sslmode=disable
- ASSETS_DIR=/var/www/status/assets
volumes:
- .:/var/www/status:rw
- ./assets/style2.css:/var/www/status/assets/style.css
db:
image: postgres:13
restart: always
environment:
POSTGRES_USER: postgres # change me
POSTGRES_PASSWORD: password # change me
POSTGRES_DB: status
volumes:
- ./db:/var/lib/postgresql/data
ports:
- "5432:5432"