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"