Add Traefik proxy support and cleanup ports
This commit is contained in:
parent
03c9d835dc
commit
4679f66964
@ -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,16 @@ 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.server.scheme: https
|
||||
traefik.http.services.unifi.loadbalancer.serverstransport.insecureskipverify: "true"
|
||||
traefik.docker.network: traefik
|
||||
traefik.enable: true
|
||||
|
||||
db:
|
||||
image: ${MONGO_IMAGE:-mongo}:${MONGO_VERSION:?}
|
||||
@ -25,7 +39,3 @@ services:
|
||||
volumes:
|
||||
- db:/data/db
|
||||
- ./init-mongo.js:/docker-entrypoint-initdb.d/init-mongo.js:ro
|
||||
|
||||
volumes:
|
||||
db:
|
||||
app:
|
||||
|
Loading…
x
Reference in New Issue
Block a user