Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

20210826 TICK - experimental branch - PR 3 of 3 #399

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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