Add Traefik proxy support and cleanup ports
This commit is contained in:
parent
03c9d835dc
commit
6d4848c168
@ -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,17 @@ 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: 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:
|
db:
|
||||||
image: ${MONGO_IMAGE:-mongo}:${MONGO_VERSION:?}
|
image: ${MONGO_IMAGE:-mongo}:${MONGO_VERSION:?}
|
||||||
@ -25,7 +40,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:
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user