mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-10 09:51:02 +01:00
21 lines
320 B
Bash
Executable File
21 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
|