Skip to content

Instantly share code, notes, and snippets.

@sar
Last active April 24, 2021 22:27
Show Gist options
  • Select an option

  • Save sar/8cc824a916a9ea49ff6ae672002c4fd5 to your computer and use it in GitHub Desktop.

Select an option

Save sar/8cc824a916a9ea49ff6ae672002c4fd5 to your computer and use it in GitHub Desktop.
Docker compose file for testing Caddy, emits default `index.html` unless volume attached to `/var/www/html`
# -----------------
# Caddy
# Docs: https://hub.docker.com/_/caddy/
# -----------------
version: "3.7"
services:
caddy:
image: caddy:latest
ports:
- 1234:80
- 12345:443
volumes:
- ./data:/data
networks:
- caddy0
networks:
caddy0:
driver: bridge
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment