mirror of
https://github.com/aykhans/my-self-host-services.git
synced 2025-07-03 20:31:38 +00:00
first commit
This commit is contained in:
22
caddy/docker-compose.yml
Normal file
22
caddy/docker-compose.yml
Normal file
@ -0,0 +1,22 @@
|
||||
services:
|
||||
caddy:
|
||||
image: caddy:2.8.4
|
||||
container_name: caddy
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- caddy
|
||||
ports:
|
||||
- "443:443"
|
||||
- "80:80"
|
||||
- "443:443/udp"
|
||||
volumes:
|
||||
- ./Caddyfile:/etc/caddy/Caddyfile
|
||||
- ./ssl:/etc/ssl/custom/
|
||||
env_file:
|
||||
- ./.env
|
||||
|
||||
networks:
|
||||
caddy:
|
||||
name: caddy
|
||||
driver: bridge
|
||||
external: true
|
Reference in New Issue
Block a user