1. The problem I’m having:
I want my docker app (emby) that’s exposed to internet to be accessible with portless caddy domain however I can’t get it working no matter what. Simply said, currently it’s accessible from:
http://app.example.domain:port
I want it to be accessible like this:
https://app.example.domain
Other info:
I use cloudflare to set DNS records
I use dynamic_dns plugin in caddy for my emby domain
All my containers are in caddy_network, emby is pingable and accessible within caddy network
I have open port 8096
I use Tailscale VPN for my other docker apps, so why I am not using it on emby? Because if I go somewhere else, into hotels, friends house, I want to simply install emby on TV and connect to my domain, Tailscale is not avaiable on TVs as far as I know.
2. Error messages and/or full log output:
No errors
3. Caddy version:
2.9.1
4. How I installed and ran Caddy:
I’ve built my own dockerfile with plugins I needed - dynamicdns, cloudflare, sablier, run with docker run
ARG CADDY_VERSION=2.9.1
FROM caddy:${CADDY_VERSION}-builder AS builder
ADD https://github.com/sablierapp/sablier.git /sablier
RUN xcaddy build \
--with github.com/caddy-dns/cloudflare \
--with github.com/sablierapp/sablier/plugins/caddy=/sablier/plugins/caddy \
--with github.com/mholt/caddy-dynamicdns
FROM caddy:${CADDY_VERSION}
COPY --from=builder /usr/bin/caddy /usr/bin/caddy
a. System environment:
Device: Raspberry Pi 5
OS: Raspberry OS 64-bit
Using docker
c. Service/unit/compose file:
services:
caddy:
image: caddy:cloudflare-sablier
restart: unless-stopped
networks:
- caddy_network
ports:
- "8082:80"
- "443:443"
- "2019:2019"
volumes:
- /DATA/AppData/caddy:/data
- /DATA/AppData/caddy/conf/Caddyfile:/etc/caddy/Caddyfile
d. My complete Caddy config:
{
admin 0.0.0.0:2019 # Allow external API access
acme_dns cloudflare {env.CLOUDFLARE_ZONE_TOKEN}
order sablier before reverse_proxy
email my@email.com
dynamic_dns {
provider cloudflare {env.CLOUDFLARE_ZONE_TOKEN}
domains {
example.domain emby
}
versions ipv4
check_interval 1m
ttl 5m
}
}
emby.example.domain {
reverse_proxy emby:8096
handle_errors {
respond "{err.status_code} {err.status_text}"
}
}