chore: remove unnecessary variables in start+stop, remove constants file
This commit is contained in:
parent
9ce6aef17d
commit
9eba935bd7
3 changed files with 1 additions and 13 deletions
|
@ -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
|
2
start.sh
2
start.sh
|
@ -1,7 +1,5 @@
|
|||
#!/bin/bash
|
||||
|
||||
source constants.sh
|
||||
|
||||
podman run \
|
||||
--detach \
|
||||
--name "plex_app" \
|
||||
|
|
4
stop.sh
4
stop.sh
|
@ -1,5 +1,3 @@
|
|||
#!/bin/bash
|
||||
|
||||
source constants.sh
|
||||
|
||||
podman rm -f $APP_CONTAINER_NAME
|
||||
podman rm -f spad-plex-app
|
||||
|
|
Loading…
Reference in a new issue