From f23048e813e5cfb053a478681e09ad07c450eff2 Mon Sep 17 00:00:00 2001 From: Brock H Caldwell Date: Wed, 23 Apr 2025 16:24:46 -0500 Subject: [PATCH] fix: adds wget_download.sh, fixes images tag --- bash/app/wget_download.sh | 2 ++ deploy.compose.yml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100755 bash/app/wget_download.sh diff --git a/bash/app/wget_download.sh b/bash/app/wget_download.sh new file mode 100755 index 0000000..fa15a09 --- /dev/null +++ b/bash/app/wget_download.sh @@ -0,0 +1,2 @@ +# $1 = movies/tvshows/etc, $2 = title of media, $3 = URL of download +cd /dl/${1} && if [ ! -d "${2}" ]; then mkdir "${2}"; fi && cd "${2}" && wget "${3}" diff --git a/deploy.compose.yml b/deploy.compose.yml index 5b16325..4de0ec6 100755 --- a/deploy.compose.yml +++ b/deploy.compose.yml @@ -1,5 +1,5 @@ services: php: - image: code.caldwell.digital/home/torsearch/app:${TAG} + image: registry.caldwell.digital/home/torsearch/app:${TAG} ports: - "8001:80"