nummi/compose.yaml
Edgar P. Burkhart 100773c958
All checks were successful
Build and push Docker image / build (push) Successful in 1m35s
Remove version tag from Nummi image in Docker Compose configuration
2025-05-08 21:03:28 +02:00

23 lines
No EOL
554 B
YAML

services:
nummi:
image: code.edgarpierre.fr/edpibu/nummi
container_name: nummi
restart: unless-stopped
ports:
- 33001:8000
volumes:
- /docker/nummi/config:/nummi
- /docker/nummi/static:/app/static
- /docker/nummi/media:/app/media
depends_on:
- postgres
postgres:
image: postgres:17-alpine
container_name: nummi_postgres
restart: unless-stopped
environment:
POSTGRES_USER: nummi
POSTGRES_PASSWORD:
volumes:
- /docker/nummi/postgres:/var/lib/postgresql/data