mirror of
https://github.com/qdm12/caddy-scratch.git
synced 2022-03-12 19:25:15 +03:00
- Using default Caddyfile instead of flags - Using single caddydir volume (for osx+windows) - Image based on Alpine as caddy not built statically - Fixed Caddy docker tags documentation
16 lines
298 B
YAML
16 lines
298 B
YAML
version: "3.7"
|
|
services:
|
|
caddy:
|
|
image: qmcgaw/caddy-scratch
|
|
container_name: caddy
|
|
volumes:
|
|
- ./caddydir:/caddydir
|
|
environment:
|
|
- TZ=America/Montreal
|
|
network_mode: bridge
|
|
ports:
|
|
- 80:8080/tcp
|
|
- 443:8443/tcp
|
|
- 2015:2015/tcp
|
|
restart: always
|