diff --git a/services/bastion/build.sh b/services/bastion/build.sh index 0123c23..c3135e1 100644 --- a/services/bastion/build.sh +++ b/services/bastion/build.sh @@ -2,4 +2,4 @@ source constants.sh -docker build -t $APP_IMAGE_NAME:$IMAGE_VERSION -f Dockerfile-bastion-app . +podman build -t $APP_IMAGE_NAME:$IMAGE_VERSION -f Dockerfile-bastion-app . diff --git a/services/bastion/start.sh b/services/bastion/start.sh index 2d8f247..597d978 100644 --- a/services/bastion/start.sh +++ b/services/bastion/start.sh @@ -2,9 +2,9 @@ source constants.sh -docker network create $NETWORK_NAME || echo "Network $NETWORK_NAME already exists" +podman network create $NETWORK_NAME || echo "Network $NETWORK_NAME already exists" -docker run \ +podman run \ --detach \ --network $NETWORK_NAME \ --name $APP_CONTAINER_NAME \ diff --git a/services/bastion/stop.sh b/services/bastion/stop.sh index 871ff06..78156cb 100644 --- a/services/bastion/stop.sh +++ b/services/bastion/stop.sh @@ -2,4 +2,4 @@ source constants.sh -docker rm -f $APP_CONTAINER_NAME +podman rm -f $APP_CONTAINER_NAME diff --git a/services/bitwarden/build.sh b/services/bitwarden/build.sh index de4d126..d3c3f02 100644 --- a/services/bitwarden/build.sh +++ b/services/bitwarden/build.sh @@ -2,5 +2,5 @@ source constants.sh -docker build -t $DB_IMAGE_NAME:$IMAGE_VERSION -f Dockerfile-bitwarden-db . -docker build -t $APP_IMAGE_NAME:$IMAGE_VERSION -f Dockerfile-bitwarden-app . +podman build -t $DB_IMAGE_NAME:$IMAGE_VERSION -f Dockerfile-bitwarden-db . +podman build -t $APP_IMAGE_NAME:$IMAGE_VERSION -f Dockerfile-bitwarden-app . diff --git a/services/bitwarden/start.sh b/services/bitwarden/start.sh index a904191..704d0f1 100644 --- a/services/bitwarden/start.sh +++ b/services/bitwarden/start.sh @@ -2,9 +2,9 @@ source constants.sh -docker network create $NETWORK_NAME || echo "Network $NETWORK_NAME already exists" +podman network create $NETWORK_NAME || echo "Network $NETWORK_NAME already exists" -docker run \ +podman run \ --detach \ --network $NETWORK_NAME \ --name $DB_CONTAINER_NAME \ @@ -12,7 +12,7 @@ docker run \ --mount type=bind,source=$APP_DATA_DIR/bitwarden/db,target=/var/lib/mysql \ $DB_IMAGE_NAME:$IMAGE_VERSION -docker run \ +podman run \ --detach \ --network $NETWORK_NAME \ --name $APP_CONTAINER_NAME \ diff --git a/services/bitwarden/stop.sh b/services/bitwarden/stop.sh index 62c5c50..ea7d565 100644 --- a/services/bitwarden/stop.sh +++ b/services/bitwarden/stop.sh @@ -2,5 +2,5 @@ source constants.sh -docker rm -f $APP_CONTAINER_NAME -docker rm -f $DB_CONTAINER_NAME +podman rm -f $APP_CONTAINER_NAME +podman rm -f $DB_CONTAINER_NAME diff --git a/services/bookstack/build.sh b/services/bookstack/build.sh index c53c7c9..cdce680 100644 --- a/services/bookstack/build.sh +++ b/services/bookstack/build.sh @@ -2,5 +2,5 @@ source constants.sh -docker build -t $DB_IMAGE_NAME:$IMAGE_VERSION -f Dockerfile-bookstack-db . -docker build -t $APP_IMAGE_NAME:$IMAGE_VERSION -f Dockerfile-bookstack-app . +podman build -t $DB_IMAGE_NAME:$IMAGE_VERSION -f Dockerfile-bookstack-db . +podman build -t $APP_IMAGE_NAME:$IMAGE_VERSION -f Dockerfile-bookstack-app . diff --git a/services/bookstack/start.sh b/services/bookstack/start.sh index 86ebdd7..ed64838 100644 --- a/services/bookstack/start.sh +++ b/services/bookstack/start.sh @@ -2,9 +2,9 @@ source constants.sh -docker network create $NETWORK_NAME || echo "Network $NETWORK_NAME already exists" +podman network create $NETWORK_NAME || echo "Network $NETWORK_NAME already exists" -docker run \ +podman run \ --detach \ --network $NETWORK_NAME \ --name $DB_CONTAINER_NAME \ @@ -12,7 +12,7 @@ docker run \ --mount type=bind,source=$APP_DATA_DIR/bookstack-db,target=/var/lib/mysql \ $DB_IMAGE_NAME:$IMAGE_VERSION -docker run \ +podman run \ --detach \ --network $NETWORK_NAME \ --name $APP_CONTAINER_NAME \ diff --git a/services/bookstack/stop.sh b/services/bookstack/stop.sh index 62c5c50..ea7d565 100644 --- a/services/bookstack/stop.sh +++ b/services/bookstack/stop.sh @@ -2,5 +2,5 @@ source constants.sh -docker rm -f $APP_CONTAINER_NAME -docker rm -f $DB_CONTAINER_NAME +podman rm -f $APP_CONTAINER_NAME +podman rm -f $DB_CONTAINER_NAME diff --git a/services/deluge/build.sh b/services/deluge/build.sh index 0560945..d8fa3af 100644 --- a/services/deluge/build.sh +++ b/services/deluge/build.sh @@ -2,4 +2,4 @@ source constants.sh -docker build -t $APP_IMAGE_NAME:$IMAGE_VERSION -f Dockerfile-deluge-app . +podman build -t $APP_IMAGE_NAME:$IMAGE_VERSION -f Dockerfile-deluge-app . diff --git a/services/deluge/start.sh b/services/deluge/start.sh index facfdea..eadcbd7 100644 --- a/services/deluge/start.sh +++ b/services/deluge/start.sh @@ -2,9 +2,9 @@ source constants.sh -docker network create $NETWORK_NAME || echo "Network $NETWORK_NAME already exists" +podman network create $NETWORK_NAME || echo "Network $NETWORK_NAME already exists" -docker run \ +podman run \ --detach \ --network $NETWORK_NAME \ --name $APP_CONTAINER_NAME \ diff --git a/services/deluge/stop.sh b/services/deluge/stop.sh index 871ff06..78156cb 100644 --- a/services/deluge/stop.sh +++ b/services/deluge/stop.sh @@ -2,4 +2,4 @@ source constants.sh -docker rm -f $APP_CONTAINER_NAME +podman rm -f $APP_CONTAINER_NAME diff --git a/services/plex/build.sh b/services/plex/build.sh index 5e39262..9dd46c7 100644 --- a/services/plex/build.sh +++ b/services/plex/build.sh @@ -2,4 +2,4 @@ source constants.sh -docker build -t $APP_IMAGE_NAME:$IMAGE_VERSION -f Dockerfile-plex-app . +podman build -t $APP_IMAGE_NAME:$IMAGE_VERSION -f Dockerfile-plex-app . diff --git a/services/plex/start.sh b/services/plex/start.sh index a623874..5929724 100644 --- a/services/plex/start.sh +++ b/services/plex/start.sh @@ -2,9 +2,9 @@ source constants.sh -docker network create $NETWORK_NAME || echo "Network $NETWORK_NAME already exists" +podman network create $NETWORK_NAME || echo "Network $NETWORK_NAME already exists" -docker run \ +podman run \ --detach \ --network $NETWORK_NAME \ --name $APP_CONTAINER_NAME \ diff --git a/services/plex/stop.sh b/services/plex/stop.sh index 871ff06..78156cb 100644 --- a/services/plex/stop.sh +++ b/services/plex/stop.sh @@ -2,4 +2,4 @@ source constants.sh -docker rm -f $APP_CONTAINER_NAME +podman rm -f $APP_CONTAINER_NAME