You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
397 B
18 lines
397 B
#!/usr/bin/with-contenv bash
|
|
|
|
mkdir -p /scrutiny/influxdb/
|
|
|
|
if [ -f "/scrutiny/influxdb/config.yaml" ]; then
|
|
echo "influxdb config file already exists. skipping."
|
|
else
|
|
cat << 'EOF' > /scrutiny/influxdb/config.yaml
|
|
bolt-path: /scrutiny/influxdb/influxd.bolt
|
|
engine-path: /scrutiny/influxdb/engine
|
|
http-bind-address: ":8086"
|
|
reporting-disabled: true
|
|
EOF
|
|
fi
|
|
|
|
echo "starting influxdb"
|
|
influxd run
|