Fix docker.sh references to old image names.

This commit is contained in:
Buster "Silver Eagle" Neece 2019-01-17 07:10:25 -06:00
parent 3820aa58ef
commit 401890cbf9
1 changed files with 9 additions and 1 deletions

View File

@ -146,7 +146,15 @@ update-self() {
# Usage: ./docker.sh cli [command]
#
cli() {
docker-compose run --rm cli azuracast_cli $*
docker-compose run --user="azuracast" --rm web azuracast_cli $*
}
#
# Enter the bash terminal of the running web container.
# Usage: ./docker.sh bash
#
bash() {
docker-compose exec --user="azuracast" web bash
}
#