Skip to content

Commit

Permalink
Merge pull request #399 from Paraphraser/20210826-TICK-experimental
Browse files Browse the repository at this point in the history
20210826 TICK - experimental branch - PR 3 of 3
  • Loading branch information
Slyke authored Sep 4, 2021
2 parents 1432ece + 4e3bdb1 commit 3ab3adf
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .internal/templates/services/chronograf/template.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
chronograf:
container_name: chronograf
image: chronograf:latest
restart: unless-stopped
environment:
- TZ=Etc/UTC
# see https://docs.influxdata.com/chronograf/v1.9/administration/config-options/
- INFLUXDB_URL=http://influxdb:8086
# - INFLUXDB_USERNAME=
# - INFLUXDB_PASSWORD=
# - INFLUXDB_ORG=
# - KAPACITOR_URL=http://kapacitor:9092
ports:
- "8888:8888"
volumes:
- ./volumes/chronograf:/var/lib/chronograf
depends_on:
- influxdb
# - kapacitor
networks:
- iotstack_nw
21 changes: 21 additions & 0 deletions .internal/templates/services/kapacitor/template.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
kapacitor:
container_name: kapacitor
image: kapacitor:1.5
restart: unless-stopped
environment:
- TZ=Etc/UTC
# see https://docs.influxdata.com/kapacitor/v1.6/administration/configuration/#kapacitor-environment-variables
- KAPACITOR_INFLUXDB_0_URLS_0=http://influxdb:8086
# - KAPACITOR_INFLUXDB_USERNAME=
# - KAPACITOR_INFLUXDB_PASSWORD=
# - KAPACITOR_HOSTNAME=kapacitor
# - KAPACITOR_LOGGING_LEVEL=INFO
# - KAPACITOR_REPORTING_ENABLED=false
ports:
- "9092:9092"
volumes:
- ./volumes/kapacitor:/var/lib/kapacitor
depends_on:
- influxdb
networks:
- iotstack_nw

0 comments on commit 3ab3adf

Please sign in to comment.