diff --git a/apps/movie-pilot/2.5.5/scripts/init.sh b/apps/movie-pilot/2.5.5/scripts/init.sh deleted file mode 100644 index 118f924a3..000000000 --- a/apps/movie-pilot/2.5.5/scripts/init.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/bash - -if [ -f .env ]; then - source .env - - # setup-1 add default values - CURRENT_DIR=$(pwd) - sed -i '/^ENV_FILE=/d' .env - sed -i '/^GLOBAL_ENV_FILE=/d' .env - sed -i '/^APP_ENV_FILE=/d' .env - echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env - echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env - echo "APP_ENV_FILE=${CURRENT_DIR}/envs/movie-pilot.env" >> .env - - echo "Check Finish." - -else - echo "Error: .env file not found." -fi diff --git a/apps/movie-pilot/2.5.5/scripts/uninstall.sh b/apps/movie-pilot/2.5.5/scripts/uninstall.sh deleted file mode 100644 index c86c4fbca..000000000 --- a/apps/movie-pilot/2.5.5/scripts/uninstall.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/bash - -if [ -f .env ]; then - source .env - - echo "Check Finish." - -else - echo "Error: .env file not found." -fi diff --git a/apps/movie-pilot/2.5.5/scripts/upgrade.sh b/apps/movie-pilot/2.5.5/scripts/upgrade.sh deleted file mode 100644 index 84793ac8a..000000000 --- a/apps/movie-pilot/2.5.5/scripts/upgrade.sh +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/bash - -if [ -f .env ]; then - source .env - - # setup-1 add default values - CURRENT_DIR=$(pwd) - sed -i '/^ENV_FILE=/d' .env - sed -i '/^GLOBAL_ENV_FILE=/d' .env - sed -i '/^APP_ENV_FILE=/d' .env - echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env - echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env - echo "APP_ENV_FILE=${CURRENT_DIR}/envs/movie-pilot.env" >> .env - - echo "Check Finish." -else - echo "Error: .env file not found." -fi diff --git a/apps/movie-pilot/2.5.5/data.yml b/apps/movie-pilot/2.5.6/data.yml similarity index 100% rename from apps/movie-pilot/2.5.5/data.yml rename to apps/movie-pilot/2.5.6/data.yml diff --git a/apps/movie-pilot/2.5.5/docker-compose.yml b/apps/movie-pilot/2.5.6/docker-compose.yml similarity index 97% rename from apps/movie-pilot/2.5.5/docker-compose.yml rename to apps/movie-pilot/2.5.6/docker-compose.yml index 25ef01692..9cd06442e 100644 --- a/apps/movie-pilot/2.5.5/docker-compose.yml +++ b/apps/movie-pilot/2.5.6/docker-compose.yml @@ -4,7 +4,7 @@ networks: services: movie-pilot-v2: - image: jxxghp/moviepilot-v2:2.5.5 + image: jxxghp/moviepilot-v2:2.5.6 container_name: ${CONTAINER_NAME} labels: createdBy: "Apps" diff --git a/apps/movie-pilot/2.5.5/envs/default.env b/apps/movie-pilot/2.5.6/envs/default.env similarity index 100% rename from apps/movie-pilot/2.5.5/envs/default.env rename to apps/movie-pilot/2.5.6/envs/default.env diff --git a/apps/movie-pilot/2.5.5/envs/global.env b/apps/movie-pilot/2.5.6/envs/global.env similarity index 100% rename from apps/movie-pilot/2.5.5/envs/global.env rename to apps/movie-pilot/2.5.6/envs/global.env diff --git a/apps/movie-pilot/2.5.5/envs/movie-pilot.env b/apps/movie-pilot/2.5.6/envs/movie-pilot.env similarity index 100% rename from apps/movie-pilot/2.5.5/envs/movie-pilot.env rename to apps/movie-pilot/2.5.6/envs/movie-pilot.env