From 8022a2cb41ed760f518b714bdc234f83fe32c2c6 Mon Sep 17 00:00:00 2001 From: 3wc <3wc.git@doesthisthing.work> Date: Sun, 27 Dec 2020 12:05:49 +0200 Subject: [PATCH] Add cheeky `network` command --- abra | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/abra b/abra index af91001..5c2ea61 100755 --- a/abra +++ b/abra @@ -988,18 +988,24 @@ sub_upgrade() { curl https://install.abra.autonomic.zone | bash } -###### .. volume ... +###### .. stack ... sub_stack() { # shellcheck disable=SC2068 docker stack $@ } -###### .. stack ... +###### .. volume ... sub_volume() { # shellcheck disable=SC2068 docker volume $@ } +###### .. network ... +sub_network() { + # shellcheck disable=SC2068 + docker network $@ +} + ####################################### # Main #######################################