dev image

This commit is contained in:
jokob-sk
2025-01-08 08:19:44 +11:00
parent 0333ae26cd
commit d2c844fc3e
9 changed files with 25 additions and 65 deletions

View File

@@ -0,0 +1,12 @@
#!/usr/bin/env bashio
# shellcheck shell=bash
set -e
bashio::log.warning "App starting."
##############
# LAUNCH APP #
##############
chmod +x /app/dockerfiles/start.sh
/app/dockerfiles/start.sh

View File

@@ -1,43 +0,0 @@
#!/usr/bin/with-contenv bashio
# shellcheck shell=bash
set -e
##################
# SYMLINK CONFIG #
##################
#Create folders
if [ ! -d /share/netalertx ]; then
echo "Creating /share/netalertx"
mkdir -p /share/netalertx
chown -R "$PUID:$PGID" /share/netalertx
else
chown -R "$PUID:$PGID" /share/netalertx
fi
mkdir -p /config/www/local
if [ ! -d /share/netalertx/config ] && [ -d /config/www/local/config ]; then
echo "moving config folder"
mv /config/www/local/config /share/netalertx
ln -s /share/netalertx/config /config/www/local
echo "links done"
else
if [ -d /config/www/local/config ]; then rm -r /config/www/local/config; fi
ln -s /share/netalertx/config /config/www/local
echo "Using existing config"
fi
mkdir -p /config/keys
if [ ! -d /share/netalertx/keys ]; then
echo "moving keys folder"
mv /config/keys /share/netalertx
ln -s /share/netalertx/keys /config
echo "links done"
else
rm -r /config/keys
ln -s /share/netalertx/keys /config
echo "Using existing keys folder"
fi

View File

@@ -1 +0,0 @@
/etc/s6-overlay/s6-rc.d/init-alexbelgium/run