Skip to content
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
8 changes: 8 additions & 0 deletions .templates/chronograf/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM chronograf:alpine

# see https://github.com/influxdata/influxdata-docker/pull/781
# this patch can be withdrawn if/when PR781 is applied.

COPY entrypoint.sh /entrypoint.sh

# EOF
25 changes: 25 additions & 0 deletions .templates/chronograf/entrypoint.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
#!/bin/sh
set -e

if [ "${1:0:1}" = '-' ]; then
set -- chronograf "$@"
fi

if [ "$1" = 'chronograf' ]; then
export BOLT_PATH=${BOLT_PATH:-/var/lib/chronograf/chronograf-v1.db}
fi

if [ $(id -u) -eq 0 ] ; then
if [ "${CHRONOGRAF_AS_ROOT}" != "true" ] ; then
chown -Rc chronograf:chronograf /var/lib/chronograf
exec su-exec chronograf "$@"
fi
chown -Rc root:root /var/lib/chronograf
else
if [ ! -w /var/lib/chronograf ] ; then
echo "You need to change ownership on chronograf's persistent store. Run:"
echo " sudo chown -R $(id -u):$(id -u) /path/to/persistent/store"
fi
fi

exec "$@"
5 changes: 3 additions & 2 deletions .templates/chronograf/service.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
chronograf:
container_name: chronograf
image: chronograf:latest
build:
context: ./.templates/chronograf/.
restart: unless-stopped
environment:
- TZ=${TZ:-Etc/UTC}
Expand All @@ -10,11 +11,11 @@ chronograf:
# - INFLUXDB_PASSWORD=
# - INFLUXDB_ORG=
# - KAPACITOR_URL=http://kapacitor:9092
# - CHRONOGRAF_AS_ROOT=true
ports:
- "8888:8888"
volumes:
- ./volumes/chronograf:/var/lib/chronograf
depends_on:
- influxdb
# - kapacitor

44 changes: 44 additions & 0 deletions docs/Containers/Chronograf.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ In words:
* `docker-compose up -d` causes any newly-downloaded images to be instantiated as containers (replacing the old containers); and
* the `prune` gets rid of the outdated images.

See also [2025-03-04 patch](#patch1).

### Chronograf version pinning

If you need to pin to a particular version:
Expand All @@ -69,3 +71,45 @@ If you need to pin to a particular version:
$ docker-compose up -d chronograf
$ docker system prune
```

<a name="patch1"></a>
## 2025-03-04 patch

Chronograf does not start properly from a clean slate. The cause is explained [here](https://github.com/influxdata/influxdata-docker/pull/781).

You can solve the problem in two ways:

1. You can set the correct permissions yourself:

``` console
$ cd ~/IOTstack
$ docker-compose down chronograf
$ sudo chown -R 999:999 ./volumes/chronograf
$ docker-compose up -d chronograf
```

Generally, this is a one-time fix. You will only need to repeat it if you start Chronograf from a clean slate.

2. You can adopt the updated service definition, either by:

- using the menu to delete then reinstall `chronograf`; or by
- using a text editor to hand-merge the contents of:

```
~/IOTstack/.templates/chronograf/service.yml
```

with:

```
~/IOTstack/docker-compose.yml
```

If you adopt the updated service definition then the process for keeping Chronograf up-to-date becomes:

``` console
$ cd ~/IOTstack
$ docker-compose build --no-cache --pull chronograf
$ docker-compose up -d chronograf
$ docker system prune
```