mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-09 17:31:03 +01:00
20 lines
320 B
Bash
Executable File
20 lines
320 B
Bash
Executable File
#!/usr/bin/with-contenv bashio
|
|
# shellcheck shell=bash
|
|
set -e
|
|
|
|
###############
|
|
# Start nginx #
|
|
###############
|
|
|
|
# Set UrlBase
|
|
|
|
bashio::log.info "Starting NGinx..."
|
|
nginx & true
|
|
|
|
#############
|
|
# Start app #
|
|
#############
|
|
|
|
bashio::log.info "Starting app"
|
|
exec /usr/local/bin/autobrr --config /config/addons_config/autobrr
|