28 lines
789 B
Smarty
28 lines
789 B
Smarty
# Caddy Docker Compose — rendered by phase8_cutover.sh
|
|
# Caddy with Cloudflare DNS-01 support for wildcard TLS.
|
|
# CF_API_TOKEN env var is only needed when TLS_MODE=cloudflare.
|
|
# Variables: CADDY_DATA_PATH, CADDY_CONTAINER_IP, CADDY_ENV_VARS,
|
|
# CADDY_EXTRA_VOLUMES, GITEA_NETWORK_NAME
|
|
|
|
version: "3"
|
|
|
|
services:
|
|
caddy:
|
|
image: slothcroissant/caddy-cloudflaredns:latest
|
|
container_name: caddy
|
|
restart: unless-stopped
|
|
environment:
|
|
${CADDY_ENV_VARS}
|
|
volumes:
|
|
- ${CADDY_DATA_PATH}/Caddyfile:/etc/caddy/Caddyfile
|
|
- ${CADDY_DATA_PATH}/data:/data
|
|
- ${CADDY_DATA_PATH}/config:/config
|
|
${CADDY_EXTRA_VOLUMES}
|
|
networks:
|
|
${GITEA_NETWORK_NAME}:
|
|
ipv4_address: ${CADDY_CONTAINER_IP}
|
|
|
|
networks:
|
|
${GITEA_NETWORK_NAME}:
|
|
external: true
|