#4818 -- Switch to different method to avoid orphan warnings with installer.

This commit is contained in:
Buster "Silver Eagle" Neece 2021-11-26 14:18:34 -06:00
parent 4fda3c00d3
commit 4d9fa670bd
No known key found for this signature in database
GPG Key ID: 6D9E12FF03411F4E
1 changed files with 2 additions and 2 deletions

View File

@ -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
}