Caddy Docker image with the following modules included:
- https://github.com/mholt/caddy-l4
- https://github.com/caddyserver/transform-encoder
- https://github.com/hslatman/caddy-crowdsec-bouncer
- https://github.com/caddy-dns/porkbun
Forked from https://github.com/encg/caddy-cloudflare-crowdsec for personal use since a lot of my domains was on Porkbun. The contents below is from the original repo. I will edit to my version along the way.
version: "3.8"
services:
caddy:
image: encg/caddy-cloudflare-crowdsec
restart: unless-stopped
ports:
- "80:80"
- "443:443"
- "443:443/udp"
volumes:
- $PWD/Caddyfile:/etc/caddy/Caddyfile
- caddy_data:/data
- caddy_config/config
volumes:
caddy_data:
external: true
caddy_config:
PORKBUN_API_KEY=changeme
PORKBUN_API_SECRET_KEY=changeme
CS_LOCAL_API_KEY=crowdsec_local_api_key
{
acme_dns porkbun {
api_key {env.PORKBUN_API_KEY}
api_secret_key {env.PORKBUN_API_SECRET_KEY}
}
crowdsec {
api_url http://crowdsec:8080
api_key {$CS_LOCAL_API_KEY}
ticker_interval 15s
#disable_streaming
#enable_hard_fails
}
}
Refer to the respective projects for further documentation: