django-helpdesk/standalone/docker-compose-dev.yml
2025-01-21 20:35:59 +01:00

31 lines
593 B
YAML

version: '2'
services:
caddy:
image: caddy:2
restart: unless-stopped
volumes:
- /tmp/data/caddy/data:/data
- /tmp/data/caddy/config:/config
- ./Caddyfile:/etc/caddy/Caddyfile:r
ports:
- "80:80"
- "443:443"
django-helpdesk:
build:
context: ..
dockerfile: standalone/Dockerfile
user: root
volumes:
- /tmp/django-helpdesk-data:/data/
- ../:/opt/django-helpdesk
env_file: docker.env
depends_on:
- postgres
postgres:
image: postgres:12-bullseye
volumes:
- ./db:/var/lib/postgresql/data
env_file: docker.env