21 lines
538 B
Bash
21 lines
538 B
Bash
#!/bin/bash
|
|
|
|
source constants.sh
|
|
|
|
podman pod create \
|
|
-p 8112:8112 \
|
|
--replace \
|
|
"deluge"
|
|
|
|
podman run \
|
|
-d \
|
|
--pod "deluge" \
|
|
-e PGUID=1000 \
|
|
-e PGID=1000 \
|
|
--name "$APP_CONTAINER_NAME" \
|
|
--env-file "$ENV_FILE_DIR"/deluge.env \
|
|
--mount type=bind,source="$APP_DATA_DIR"/deluge/config,target=/config \
|
|
--mount type=bind,source="$APP_DATA_DIR"/deluge/downloads,target=/downloads \
|
|
--mount type=bind,source="$STORAGE_DIR",target=/complete \
|
|
--replace \
|
|
"$APP_IMAGE_NAME:$IMAGE_VERSION"
|