diff --git a/VERSION b/VERSION index c588834..6f26162 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.1.0.0026 +0.1.0.0027 diff --git a/deploy.sh b/deploy.sh index e89bd81..8f94510 100755 --- a/deploy.sh +++ b/deploy.sh @@ -94,6 +94,11 @@ if [ "$GREENFIELD" = true ]; then if [ -d "$SCRIPT_DIR/config/www" ]; then cp -r "$SCRIPT_DIR/config/www"/* "$TARGET_DIR/www/"; fi cp -r "$SCRIPT_DIR/config/nextworkspace"/* "$TARGET_DIR/config/nextworkspace/" 2>/dev/null || true + # Copy language files + if [ -d "$SCRIPT_DIR/lng" ]; then + cp -r "$SCRIPT_DIR/lng" "$TARGET_DIR/" + fi + # Create podman network and deploy Caddy + Authelia echo "[5/5] Deploying containers on $NETWORK_NAME..." podman network create "$NETWORK_NAME" 2>&1 || true