mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-10 01:41:02 +01:00
10 lines
275 B
Bash
Executable File
10 lines
275 B
Bash
Executable File
#!/command/with-contenv bashio
|
|
# shellcheck shell=bash
|
|
set -e
|
|
|
|
bashio::log.info "Starting Social to Mealie"
|
|
cd /app || bashio::exit.nok "App directory not found"
|
|
chown nextjs /app/entrypoint.sh
|
|
chmod +x /app/entrypoint.sh
|
|
exec gosu nextjs /app/entrypoint.sh node --run start
|