nginx und caddy hinzugefügt
This commit is contained in:
parent
ccc1973623
commit
7a0639dc38
1 changed files with 21 additions and 0 deletions
21
docker-compose/caddy-proxy/docker-compose.yml
Normal file
21
docker-compose/caddy-proxy/docker-compose.yml
Normal file
|
|
@ -0,0 +1,21 @@
|
||||||
|
services:
|
||||||
|
caddy:
|
||||||
|
image: caddy:latest
|
||||||
|
container_name: caddy
|
||||||
|
restart: unless-stopped
|
||||||
|
ports:
|
||||||
|
- "80:80"
|
||||||
|
- "443:443"
|
||||||
|
- "443:443/udp"
|
||||||
|
volumes:
|
||||||
|
- ./caddy:/etc/caddy/
|
||||||
|
- ./site:/srv
|
||||||
|
- ./caddy_data:/data
|
||||||
|
- ./caddy_config:/config
|
||||||
|
networks:
|
||||||
|
- reverseproxy_netz
|
||||||
|
|
||||||
|
|
||||||
|
networks:
|
||||||
|
reverseproxy_netz:
|
||||||
|
external: true
|
||||||
Loading…
Add table
Reference in a new issue