diff --git a/CHANGES.md b/CHANGES.md index 0dd92eeff..0f24324ee 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,7 +8,10 @@ - Renamed *Devices* to *Sessions* - Add Provider Icon to each Session - Add Anonymous Account Placeholder -- Upgraded telegraf docker image version to v1.1.0 +- Upgraded telegraf docker image version to v1.2.0 +- Added new environment variables to the `telegraf` service: + - _APP_INFLUXDB_HOST + - _APP_INFLUXDB_PORT ## Bugs diff --git a/app/views/install/compose.phtml b/app/views/install/compose.phtml index 77b19d9a3..1acc35066 100644 --- a/app/views/install/compose.phtml +++ b/app/views/install/compose.phtml @@ -372,11 +372,14 @@ services: - appwrite-influxdb:/var/lib/influxdb:rw telegraf: - image: appwrite/telegraf:1.1.0 + image: appwrite/telegraf:1.2.0 container_name: appwrite-telegraf restart: unless-stopped networks: - appwrite + environment: + - _APP_INFLUXDB_HOST + - _APP_INFLUXDB_PORT networks: gateway: diff --git a/docker-compose.yml b/docker-compose.yml index c9c278431..ec4a74a25 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -431,10 +431,13 @@ services: - appwrite-influxdb:/var/lib/influxdb:rw telegraf: - image: appwrite/telegraf:1.1.0 + image: appwrite/telegraf:1.2.0 container_name: appwrite-telegraf networks: - appwrite + environment: + - _APP_INFLUXDB_HOST + - _APP_INFLUXDB_PORT # Dev Tools Start ------------------------------------------------------------------------------------------ #