Skip init for installer.

This commit is contained in:
Buster "Silver Eagle" Neece 2022-03-08 19:44:12 -06:00
parent 18eb11b2a1
commit 11e5741fde
No known key found for this signature in database
GPG Key ID: 9FC8B9E008872109
2 changed files with 3 additions and 1 deletions

View File

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

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 docker_installer install "$@"
rm docker-compose.installer.yml
}