Merge pull request #115 from danwall/patch-2

Fix docker compose environment variables
This commit is contained in:
David Newhall II 2019-09-10 08:27:29 -07:00 committed by GitHub
commit e84c96f2a8
1 changed files with 3 additions and 3 deletions

View File

@ -41,9 +41,9 @@ services:
restart: always
image: golift/unifi-poller:${UP_BRANCH}
environment:
- UP_INFLUX_DB=${INFLUXDB_USERNAME}
- UP_INFLUX_USER=${INFLUXDB_PASSWORD}
- UP_INFLUX_PASS=${INFLUXDB_DATABASE}
- UP_INFLUX_DB=${INFLUXDB_DATABASE}
- UP_INFLUX_USER=${INFLUXDB_USERNAME}
- UP_INFLUX_PASS=${INFLUXDB_PASSWORD}
- UP_INFLUX_URL=http://influxdb:8086
- UP_UNIFI_USER=${UP_UNIFI_USER}
- UP_UNIFI_PASS=${UP_UNIFI_PASS}