You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
512 B
22 lines
512 B
version: '3'
|
|
services:
|
|
caddy:
|
|
image: abiosoft/caddy
|
|
restart: always
|
|
container_name: caddy
|
|
environment:
|
|
- ACME_AGREE=true
|
|
- ENABLE_TELEMETRY=false
|
|
ports:
|
|
- "443:443"
|
|
- "80:80"
|
|
volumes:
|
|
- path_to/etc/Caddyfile:/etc/Caddyfile
|
|
- paht_to/data/caddy/certs:/root/.caddy
|
|
networks:
|
|
- default
|
|
- docker_network # muss man erstellen, name nicht irelevant
|
|
|
|
networks:
|
|
docker_network: # muss man erstellen, name nicht irelevant
|
|
external: true |