Files
it-ansible/docker_compose_applications/reverse-proxy/compose.yaml
Julian Schacher 89fda37a38 Switch reverse-proxy to Caddy and let it handle the certs
Do this to simply the entire deployment.
2024-02-15 14:58:27 +01:00

14 lines
308 B
YAML

# Links & Resources
# - https://hub.docker.com/_/caddy
# - https://caddyserver.com/docs/
services:
caddy:
image: caddy
ports:
- "80:80"
- "443:443"
volumes:
- "./Caddyfile:/etc/caddy/Caddyfile:ro"
- "/ansible_docker_compose/project_data/reverse-proxy/caddy/data:/data"