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.
12 lines
292 B
12 lines
292 B
#!/bin/sh -x
|
|
|
|
chmod 777 /prometheus
|
|
exec su -s /bin/sh nobody <<EOF
|
|
exec /bin/prometheus \
|
|
--config.file=/etc/prometheus/prometheus.yml \
|
|
--web.console.libraries=/etc/prometheus/console_libraries \
|
|
--web.console.templates=/etc/prometheus/consoles
|
|
EOF
|
|
|
|
# --storage.local.path=/prometheus \
|