Workflow update

pull/2/head
technorabilia 3 years ago
parent fe9c54a07c
commit c3f42dc6e5

@ -20,6 +20,9 @@ services:
volumes:
# Home Assistant config storage path.
- ${BASEDIR:-/volume1/docker}/homeassistant/config:/config
ports:
# Application WebUI, only use this if you are not using host mode.
- 8123:8123 # optional
devices:
# For passing through USB, serial or gpio devices.
- /path/to/device:/path/to/device

@ -10,6 +10,7 @@ docker run -d \
-e PUID=${PUID:-1024} `# for GroupID` \
-e PGID=${PGID:-100} `# for UserID` \
-e TZ=${TZ:-Europe/Amsterdam} `# Specify a timezone to use for example Europe/Amsterdam` \
-p 8123:8123 `# optional` `# Application WebUI, only use this if you are not using host mode.` \
-v ${BASEDIR:-/volume1/docker}/homeassistant/config:/config `# Home Assistant config storage path.` \
--device /path/to/device:/path/to/device `# For passing through USB, serial or gpio devices.` \
--restart unless-stopped \

Loading…
Cancel
Save