homebridge / docker-homebridge

Homebridge Docker. HomeKit support for the impatient using Docker on x86_64, Raspberry Pi (armhf) and ARM64. Includes ffmpeg + libfdk-aac.
https://hub.docker.com/r/homebridge/homebridge/
GNU General Public License v3.0
2.57k stars 241 forks source link

hostname #484

Closed antonlamers closed 1 year ago

antonlamers commented 1 year ago

Current Situation

image

Docker Config

Hi
I have now this yml disable network mode and add ports. Did i this good or must is delete the - HOMEBRIDGE_CONFIG_UI_PORT=8581 row?

 # Homebridge
  homebridge:
    image: oznu/homebridge:raspberry-pi
    restart: unless-stopped
    # network_mode: host
    volumes:
      - ./volumes/homebridge:/homebridge
    environment:
      - PGID=1000
      - PUID=1000
      - HOMEBRIDGE_CONFIG_UI=1
      - HOMEBRIDGE_CONFIG_UI_PORT=8581
    ports:
    - 8581:8581

first i had this but for the hue bridge i must enter the current ip adres and after a reboot it was different. Is my edited file okay now can i use the hostname "deconz" within the hue bridge plugin
 # Homebridge
  homebridge:
    image: oznu/homebridge:raspberry-pi
    restart: unless-stopped
    # network_mode: host
    volumes:
      - ./volumes/homebridge:/homebridge
    environment:
      - PGID=1000
      - PUID=1000
      - HOMEBRIDGE_CONFIG_UI=1
      - HOMEBRIDGE_CONFIG_UI_PORT=8581
 # Deconz
  deconz:
    container_name: deconz
    image: deconzcommunity/deconz
    restart: unless-stopped
    privileged: true                             # This is important! Without it, the deCONZ image won't be able to connect to Conbee II.
    ports:
    - "8082:80"
    - "9443:443"
    - "5901:5900"
    - "6080:6080"
    volumes:
    - /etc/localtime:/etc/localtime:ro
    - ./volumes/deconz/:/opt/deCONZ
    devices:
    - /dev/ttyACM1                               # This is the USB device that Conbee II is running on.
    environment:
    - DECONZ_DEVICE=/dev/ttyACM1                 # This is the USB device that Conbee II is running on.
    - DECONZ_WEB_PORT=80
    - DECONZ_WS_PORT=443
    - DECONZ_VNC_MODE=1 
    - DECONZ_VNC_PASSWORD=changeme
    - DECONZ_VNC_PORT=5900
    - DECONZ_NOVNC_PORT=6080
    - DEBUG_INFO=1
    - DEBUG_APS=0
    - DEBUG_ZCL=0
    - DEBUG_ZDP=0
    - DEBUG_OTA=0
    - TZ=Europe/Amsterdam

Logs

No response

Host Operating System

Raspberry Pi OS 11 - Bullseye

Host Architecture

aarch64 / arm64

github-actions[bot] commented 1 year ago

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.