mqtt and zigbee non host mode

This commit is contained in:
Florian Zirker 2024-10-08 13:18:15 +02:00
parent 16ff239ea9
commit 99241d0061
2 changed files with 10 additions and 8 deletions

View file

@ -19,7 +19,7 @@ services:
- "traefik.http.services.traefik.loadbalancer.server.port=8080"
- "docker.group=proxy"
extra_hosts:
- host.docker.internal:172.17.0.1
- host.docker.internal:host-gateway
depends_on:
- docker-socket-proxy
@ -27,12 +27,12 @@ services:
docker-socket-proxy:
image: tecnativa/docker-socket-proxy
restart: unless-stopped
volumes:
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
environment:
# grant privileges as environment variables: https://github.com/Tecnativa/docker-socket-proxy#grant-or-revoke-access-to-certain-api-sections
- CONTAINERS=1
- INFO=1
- INFO=1
networks:
- dockersocket
privileged: true

View file

@ -16,14 +16,14 @@ services:
- "traefik.http.services.hassi.loadbalancer.server.port=8123"
- "docker.group=smartHome"
mqttbroker:
image: eclipse-mosquitto:${MOSQUITTO_VERSION}
restart: unless-stopped
network_mode: host
expose:
- 1883
#ports:
# - 1883:1883 # mqtt over TCP
networks:
- smarthome
ports:
- 1883:1883 # mqtt over TCP
# - 9001:9001 # Websockets
volumes:
- ./mosquitto.conf:/mosquitto/config/mosquitto.conf
@ -43,6 +43,7 @@ services:
- ${ZIGBEE_DEVICE}:/dev/ttyACM0
networks:
- web
- smarthome
labels:
- "traefik.enable=true"
- "traefik.http.routers.zigbee2mqtt.rule=Host(`zigbee2mqtt.${DOMAIN}`)"
@ -54,3 +55,4 @@ services:
networks:
web:
external: true
smarthome: