76933d21c1
- Replace Bazarr with NZBGet in Caddyfile routes - Add global DNS provider configuration for ACME DNS-01 challenges - Implement dynamic DNS updater with Bunny.net provider - Add comprehensive security headers and authentication - Update documentation with new requirements and setup instructions - Add .env.example, Dockerfile, cron jobs, and scripts - Modify compose.yml to use local build and add environment variables BREAKING CHANGE: Requires Bunny.net API key and updated Caddyfile configuration
26 lines
434 B
YAML
26 lines
434 B
YAML
services:
|
|
caddy:
|
|
build: .
|
|
container_name: caddy
|
|
restart: unless-stopped
|
|
ports:
|
|
- "80:80"
|
|
- "443:443"
|
|
- "443:443/udp"
|
|
volumes:
|
|
- ./conf:/etc/caddy
|
|
- caddy_data:/data
|
|
- caddy_config:/config
|
|
environment:
|
|
- BUNNY_API_KEY=${BUNNY_API_KEY}
|
|
- CADDY_EMAIL=${CADDY_EMAIL}
|
|
|
|
volumes:
|
|
caddy_data:
|
|
caddy_config:
|
|
|
|
networks:
|
|
default:
|
|
external: true
|
|
name: proxy
|