Add cheeky `network` command
continuous-integration/drone/push Build is failing Details

This commit is contained in:
3wc 2020-12-27 12:05:49 +02:00
parent 35182ed260
commit 8022a2cb41
1 changed files with 8 additions and 2 deletions

10
abra
View File

@ -988,18 +988,24 @@ sub_upgrade() {
curl https://install.abra.autonomic.zone | bash
}
###### .. volume <args>...
###### .. stack <args>...
sub_stack() {
# shellcheck disable=SC2068
docker stack $@
}
###### .. stack <args>...
###### .. volume <args>...
sub_volume() {
# shellcheck disable=SC2068
docker volume $@
}
###### .. network <args>...
sub_network() {
# shellcheck disable=SC2068
docker network $@
}
#######################################
# Main
#######################################