increased youtubedl version

This commit is contained in:
Snogard 2023-07-10 17:04:13 +02:00
parent 92a415fc68
commit 8d332a9101
2 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@ podName=youtubedl
containerName_youtubedl=${podName}_web
containerName_db=${podName}_mongodb
imageName_youtubedl=docker.io/tzahi12345/youtubedl-material:4.3.1
imageName_youtubedl=docker.io/tzahi12345/youtubedl-material:4.3.2
imageName_db=docker.io/library/mongo:4.4.22
containerName=youtubedl_material
@ -54,7 +54,7 @@ podman create \
-e ytdl_use_local_db=false \
-e write_ytdl_config=true \
-e ALLOW_CONFIG_MUTATIONS=true \
-e NODE_OPTIONS=' --max_old_space_size=2048' \
-e NODE_OPTIONS=' --max_old_space_size=4096' \
$imageName_youtubedl

View File

@ -15,7 +15,7 @@ function stop_and_remove_pod()
{
local name=$1
if podman pod ps --all | grep -qi ${name}; then
if podman pod ps | grep -qi ${name}; then
echo "Stopping old container"
systemctl --user disable $name
systemctl --user stop $name