Fix docker compose environment variables

This commit is contained in:
Dan Wall 2019-09-10 18:17:31 +10:00 committed by GitHub
parent 0b15873344
commit 84fc443e52
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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}