You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am relatively new to Unix systems, but have been in the computer fields for about 30 years. I know my way around most systems, but this is largely new to me.
I am using Docker-Compose with Portainer to build a home assistant home server off a small form factor PC. Everything has been working great so far, but trying to now add Theengs Gateway to the mix is causing me some problems.
I have added the information for a Docker-Compose using the docker-compose.yaml and Theengs Gateway starts up, but getting an error when it attempts to create the theengsgw.conf file. I am trying to redirect the service to use a folder in my /op/theengs directories.
Has anyone been able to successfully get Theengs Gateway working in a docker-compose based install of home assistant? I would love to learn what they may be doing differently.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Good Day All.
I am relatively new to Unix systems, but have been in the computer fields for about 30 years. I know my way around most systems, but this is largely new to me.
I am using Docker-Compose with Portainer to build a home assistant home server off a small form factor PC. Everything has been working great so far, but trying to now add Theengs Gateway to the mix is causing me some problems.
I have added the information for a Docker-Compose using the docker-compose.yaml and Theengs Gateway starts up, but getting an error when it attempts to create the theengsgw.conf file. I am trying to redirect the service to use a folder in my /op/theengs directories.
Has anyone been able to successfully get Theengs Gateway working in a docker-compose based install of home assistant? I would love to learn what they may be doing differently.
Appreciate the assistance!
this is an exerpt of my docker-compose.yaml
theengs_gateway:
image: theengs/gateway:latest
container_name: theengs_gateway
environment:
- MQTT_HOST=10.100.1.69
- MQTT_USERNAME=hass
- MQTT_PASSWORD=
- MQTT_PUB_TOPIC=home/TheengsGateway/BTtoMQTT
- MQTT_SUB_TOPIC=home/+/BTtoMQTT/undecoded
- PUBLISH_ALL=true
- TIME_BETWEEN=60
- SCAN_TIME=60
- LOG_LEVEL=DEBUG
- HAAS_DISCOVERY=true
- DISCOVERY=true
- DISCOVERY_TOPIC=homeassistant
- DISCOVERY_DEVICE_NAME=TheengsGateway
- DISCOVERY_FILTER="[IBEACON,GAEN,MS-CDP,APPLE_CONT,APPLE_CONTAT]"
- SCANNING_MODE=active
- ADAPTER=hci0
volumes:
- /var/run/dbus:/var/run/dbus:rw
- /opt/theengs/config/root/theengsgw.conf:/root/theengsgw.conf:rw
networks:
- default
Beta Was this translation helpful? Give feedback.
All reactions