@@ -307,6 +307,7 @@ services:
307307 influxdb3-core :
308308 container_name : influxdb3-core
309309 image : influxdb:3-core
310+ pull_policy : always
310311 # Set variables (except your auth token) for Core in the .env.3core file.
311312 env_file :
312313 - .env.3core
@@ -316,24 +317,29 @@ services:
316317 - influxdb3
317318 - serve
318319 - --node-id=node0
319- - --log-filter=debug
320320 - --object-store=file
321321 - --data-dir=/var/lib/influxdb3/data
322322 - --plugin-dir=/var/lib/influxdb3/plugins
323+ - --log-filter=debug
324+ - --verbose
323325 volumes :
324326 - type : bind
325327 source : test/.influxdb3/core/data
326328 target : /var/lib/influxdb3/data
327329 - type : bind
328- source : test/.influxdb3/core/ plugins
330+ source : test/.influxdb3/plugins/influxdata
329331 target : /var/lib/influxdb3/plugins
332+ - type : bind
333+ source : test/.influxdb3/core/plugins
334+ target : /var/lib/influxdb3/plugins/custom
330335 environment :
331336 - INFLUXDB3_AUTH_TOKEN=/run/secrets/influxdb3-core-admin-token
332337 secrets :
333338 - influxdb3-core-admin-token
334339 influxdb3-enterprise :
335340 container_name : influxdb3-enterprise
336341 image : influxdb:3-enterprise
342+ pull_policy : always
337343 # Set license email and other variables (except your auth token) for Enterprise in the .env.3ent file.
338344 env_file :
339345 - .env.3ent
@@ -344,19 +350,23 @@ services:
344350 - serve
345351 - --node-id=node0
346352 - --cluster-id=cluster0
347- - --log-filter=debug
348353 - --object-store=file
349354 - --data-dir=/var/lib/influxdb3/data
350355 - --plugin-dir=/var/lib/influxdb3/plugins
356+ - --log-filter=debug
357+ - --verbose
351358 environment :
352359 - INFLUXDB3_AUTH_TOKEN=/run/secrets/influxdb3-enterprise-admin-token
353360 volumes :
354361 - type : bind
355362 source : test/.influxdb3/enterprise/data
356363 target : /var/lib/influxdb3/data
357364 - type : bind
358- source : test/.influxdb3/enterprise/ plugins
365+ source : test/.influxdb3/plugins/influxdata
359366 target : /var/lib/influxdb3/plugins
367+ - type : bind
368+ source : test/.influxdb3/enterprise/plugins
369+ target : /var/lib/influxdb3/plugins/custom
360370 secrets :
361371 - influxdb3-enterprise-admin-token
362372 telegraf-pytest :
0 commit comments