From 4d9fa670bd22a2f89c89b663600ead56377cbb63 Mon Sep 17 00:00:00 2001 From: "Buster \"Silver Eagle\" Neece" Date: Fri, 26 Nov 2021 14:18:34 -0600 Subject: [PATCH] #4818 -- Switch to different method to avoid orphan warnings with installer. --- docker.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker.sh b/docker.sh index 519f5d4dd..ae586f78d 100755 --- a/docker.sh +++ b/docker.sh @@ -344,8 +344,8 @@ run-installer() { touch docker-compose.new.yml curl -fsSL https://raw.githubusercontent.com/AzuraCast/AzuraCast/$AZURACAST_RELEASE_BRANCH/docker-compose.installer.yml -o docker-compose.installer.yml - COMPOSE_IGNORE_ORPHANS=True docker-compose -f docker-compose.installer.yml pull - COMPOSE_IGNORE_ORPHANS=True docker-compose -f docker-compose.installer.yml run --rm installer install "$@" + docker-compose -p azuracast_installer -f docker-compose.installer.yml pull + docker-compose -p azuracast_installer -f docker-compose.installer.yml run --rm installer install "$@" rm docker-compose.installer.yml }