mirror of
https://github.com/mtan93/homeassistant-addons.git
synced 2026-03-24 05:04:14 +00:00
51 lines
1.7 KiB
Plaintext
51 lines
1.7 KiB
Plaintext
#!/usr/bin/with-contenv bashio
|
|
# ==============================================================================
|
|
# Home Assistant Community Add-on: Portainer
|
|
# Runs portainer
|
|
# ==============================================================================
|
|
declare -a options
|
|
export AGENT_SECRET
|
|
|
|
bashio::log.info 'Starting Portainer...'
|
|
|
|
options+=(--data /data)
|
|
options+=(--bind 0.0.0.0:1337)
|
|
options+=(--no-auth)
|
|
options+=(--template-file /opt/portainer/templates.json)
|
|
options+=(--no-analytics)
|
|
options+=(--host unix:///var/run/docker.sock)
|
|
|
|
# Hide Hassio containers by default, but only eforce on first run
|
|
if ! bashio::fs.file_exists "/data/hidden"; then
|
|
# shellcheck disable=SC2191
|
|
options+=(--hide-label io.hass.type=supervisor)
|
|
# shellcheck disable=SC2191
|
|
options+=(--hide-label io.hass.type=homeassistant)
|
|
# shellcheck disable=SC2191
|
|
options+=(--hide-label io.hass.type=base)
|
|
# shellcheck disable=SC2191
|
|
options+=(--hide-label io.hass.type=core)
|
|
# shellcheck disable=SC2191
|
|
options+=(--hide-label io.hass.type=addon)
|
|
# shellcheck disable=SC2191
|
|
options+=(--hide-label io.hass.type=audio)
|
|
# shellcheck disable=SC2191
|
|
options+=(--hide-label io.hass.type=cli)
|
|
# shellcheck disable=SC2191
|
|
options+=(--hide-label io.hass.type=dns)
|
|
# shellcheck disable=SC2191
|
|
options+=(--hide-label io.hass.type=multicast)
|
|
# shellcheck disable=SC2191
|
|
options+=(--hide-label io.hass.type=observer)
|
|
|
|
touch /data/hidden
|
|
fi
|
|
|
|
# Export agent secret, if defined
|
|
if bashio::config.has_value 'agent_secret' ; then
|
|
AGENT_SECRET=$(bashio::config 'agent_secret')
|
|
fi
|
|
|
|
# Run Portainer
|
|
exec /opt/portainer/portainer "${options[@]}"
|