Add Traefik proxy support and cleanup ports

This commit is contained in:
Kris Lamoureux 2024-12-30 12:49:40 -05:00
parent 03c9d835dc
commit fbbad47a08
Signed by: kris
GPG Key ID: 3EDA9C3441EDA925

View File

@ -1,3 +1,11 @@
volumes:
db:
app:
networks:
traefik:
external: true
services: services:
app: app:
image: ${UNIFI_IMAGE:-linuxserver/unifi-network-application}:${UNIFI_VERSION:?} image: ${UNIFI_IMAGE:-linuxserver/unifi-network-application}:${UNIFI_VERSION:?}
@ -14,10 +22,14 @@ services:
volumes: volumes:
- app:/config - app:/config
ports: ports:
- 8443:8443
- 3478:3478/udp - 3478:3478/udp
- 10001:10001/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: 8080
traefik.docker.network: traefik
traefik.enable: true
db: db:
image: ${MONGO_IMAGE:-mongo}:${MONGO_VERSION:?} image: ${MONGO_IMAGE:-mongo}:${MONGO_VERSION:?}
@ -25,7 +37,3 @@ services:
volumes: volumes:
- db:/data/db - db:/data/db
- ./init-mongo.js:/docker-entrypoint-initdb.d/init-mongo.js:ro - ./init-mongo.js:/docker-entrypoint-initdb.d/init-mongo.js:ro
volumes:
db:
app: