Add Traefik proxy support and cleanup ports

This commit is contained in:
Kris Lamoureux 2024-12-30 13:24:21 -05:00
parent 03c9d835dc
commit 6d4848c168
Signed by: kris
GPG Key ID: 3EDA9C3441EDA925

View File

@ -1,3 +1,11 @@
volumes:
db:
app:
networks:
traefik:
external: true
services:
app:
image: ${UNIFI_IMAGE:-linuxserver/unifi-network-application}:${UNIFI_VERSION:?}
@ -14,10 +22,17 @@ services:
volumes:
- app:/config
ports:
- 8443:8443
- 3478:3478/udp
- 10001:10001/udp
- 8080:8080
labels:
traefik.http.routers.unifi.rule: Host(`${DOMAIN:-unifi.local.krislamo.org}`)
traefik.http.routers.unifi.entrypoints: ${ENTRYPOINT:-web}
traefik.http.services.unifi.loadbalancer.server.port: 8443
traefik.http.services.unifi.loadbalancer.serverstransport: ignorecert
traefik.http.services.unifi.loadbalancer.server.scheme: https
traefik.http.serversTransports.ignorecert.insecureSkipVerify: "true"
traefik.docker.network: traefik
traefik.enable: true
db:
image: ${MONGO_IMAGE:-mongo}:${MONGO_VERSION:?}
@ -25,7 +40,3 @@ services:
volumes:
- db:/data/db
- ./init-mongo.js:/docker-entrypoint-initdb.d/init-mongo.js:ro
volumes:
db:
app: