mirror of
https://github.com/mr-vercetti/homeserver.git
synced 2025-01-19 00:35:33 +01:00
27 lines
529 B
YAML
27 lines
529 B
YAML
|
services:
|
||
|
swag:
|
||
|
image: lscr.io/linuxserver/swag
|
||
|
container_name: swag
|
||
|
networks:
|
||
|
- proxy
|
||
|
cap_add:
|
||
|
- NET_ADMIN
|
||
|
environment:
|
||
|
- PUID=${PUID}
|
||
|
- PGID=${PGID}
|
||
|
- TZ=${TIMEZONE}
|
||
|
- URL=${DOMAIN}
|
||
|
- SUBDOMAINS=wildcard
|
||
|
- VALIDATION=dns
|
||
|
- DNSPLUGIN=cloudflare
|
||
|
volumes:
|
||
|
- ${APPS_DIR}/swag:/config
|
||
|
ports:
|
||
|
- 443:443
|
||
|
- 80:80
|
||
|
restart: unless-stopped
|
||
|
|
||
|
networks:
|
||
|
proxy:
|
||
|
name: proxy
|