Fixes #5206 -- Make stable and rolling installer commands match.

This commit is contained in:
Buster "Silver Eagle" Neece 2022-03-18 05:52:44 -05:00
parent 9b8f8bd645
commit e19af51b31
No known key found for this signature in database
GPG Key ID: 9FC8B9E008872109
2 changed files with 3 additions and 3 deletions

View File

@ -5,5 +5,5 @@ services:
volumes:
- './:/installer'
restart: 'no'
entrypoint: ''
command: docker_installer
entrypoint: docker_installer
command: install

View File

@ -380,7 +380,7 @@ run-installer() {
curl -fsSL https://raw.githubusercontent.com/AzuraCast/AzuraCast/$AZURACAST_RELEASE_BRANCH/docker-compose.installer.yml -o docker-compose.installer.yml
docker-compose -p azuracast_installer -f docker-compose.installer.yml pull
docker-compose -p azuracast_installer -f docker-compose.installer.yml run --rm installer docker_installer install "$@"
docker-compose -p azuracast_installer -f docker-compose.installer.yml run --rm installer install "$@"
rm docker-compose.installer.yml
}