diff --git a/constants.sh b/constants.sh deleted file mode 100644 index f4c5085..0000000 --- a/constants.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/bash - -export APP_NAME="plex" -export APP_CONTAINER_NAME=$APP_NAME-app -export APP_IMAGE_NAME=$CONTAINER_NAME_PREFIX-$APP_CONTAINER_NAME -export DB_CONTAINER_NAME=$APP_NAME-db -export DB_IMAGE_NAME=$CONTAINER_NAME_PREFIX-$DB_CONTAINER_NAME -export NETWORK_NAME=$APP_NAME-local diff --git a/start.sh b/start.sh index 1199cdf..8e453fa 100644 --- a/start.sh +++ b/start.sh @@ -1,7 +1,5 @@ #!/bin/bash -source constants.sh - podman run \ --detach \ --name "plex_app" \ diff --git a/stop.sh b/stop.sh index 78156cb..d0fb514 100644 --- a/stop.sh +++ b/stop.sh @@ -1,5 +1,3 @@ #!/bin/bash -source constants.sh - -podman rm -f $APP_CONTAINER_NAME +podman rm -f spad-plex-app