docker: Copy config, instead of symlink. This means config is a standard file, and changes wont affect running containers.

This commit is contained in:
jamesread 2024-09-14 20:23:10 +01:00
parent e88629a3a4
commit 2ffa3ddbd1
1 changed files with 7 additions and 5 deletions

View File

@ -1,21 +1,23 @@
#!/bin/bash
set -o xtrace
if [[ "$SKIP_CONFIG_CHECK" != "true" ]]; then
echo "symlinking /config/.env into /app/.env"
echo "Entrypoint: Copying /config/postiz.env into /app/.env"
if [ ! -f /config/.env ]; then
echo "ERROR: No .env file found in /config/.env"
echo "Entrypoint: WARNING: No .env file found in /config/postiz.env"
fi
ln -sf /config/postiz.env /app/.env
cp -vf /config/postiz.env /app/.env
fi
if [[ "$POSTIZ_APPS" -eq "" ]]; then
echo "POSTIZ_APPS is not set, starting everything!"
echo "Entrypoint: POSTIZ_APPS is not set, starting everything!"
POSTIZ_APPS="frontend workers cron backend"
fi
echo "Running database migrations"
echo "Entrypoint: Running database migrations"
npm run prisma-db-push
mkdir -p /etc/supervisor.d/