Skip to content

Commit 9ed1af7

Browse files
authored
fix: use correct ENV vars in Dockerfile (#26461)
The `INFLUXDB3_OBJECT_STORE` and `INFLUXDB3_DB_DIR` env vars were not being used in the Dockerfile.
1 parent c5ed113 commit 9ed1af7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,9 @@ COPY docker/entrypoint.sh /usr/bin/entrypoint.sh
9090

9191
EXPOSE 8181
9292

93-
# TODO: Make this and other env vars not specific to IOx
94-
ENV INFLUXDB_IOX_OBJECT_STORE=file
95-
ENV INFLUXDB_IOX_DB_DIR=/var/lib/influxdb3
93+
# By default, uses a file-based object store:
94+
ENV INFLUXDB3_OBJECT_STORE=file
95+
ENV INFLUXDB3_DB_DIR=/var/lib/influxdb3
9696
ENV LOG_FILTER=info
9797

9898
ENTRYPOINT ["/usr/bin/entrypoint.sh"]

0 commit comments

Comments
 (0)