Comment on Caddy touble in Docker

irmadlad@lemmy.world ⁨1⁩ ⁨week⁩ ago

When I start Caddy with a docker compose file,

So, I’ve never owned a QNAP product running QTS nor have I run Caddy in a Docker container before, but I am assuming it looks something similar to this:

spoiler

networks: proxy-network: external: true services: caddy: image: caddy container_name: caddy restart: unless-stopped ports: - 80:80 - 443:443 volumes: - ./data:/data - ./config:/config - ./Caddyfile:/etc/caddy/Caddyfile:ro networks: - proxy-network

Have you tried changing the port #:

    ports:
      - 80:80
      - 4443:443

source
Sort:hotnewtop