You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
397 B
YAML

version: '3'
services:
lb:
image: docker.io/caddy:2.10.2-alpine
volumes:
# - /app/lb:/etc/caddy
- ./lb/:/etc/caddy
- /nassella/lb/config:/config
- /nassella/lb/data:/data
networks:
- lb
restart: unless-stopped
ports:
- "443:443"
- "80:80"
nginx:
image: nginx
restart: unless-stopped
networks:
- lb
networks:
lb: