Update create_hassio_cluster.sh
This commit is contained in:
parent
b6eb6c87d3
commit
a6b9d39118
1 changed files with 5 additions and 5 deletions
|
@ -2,7 +2,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
BUILD_CONTAINER_NAME=hassio-cluster-build-$$
|
BUILD_CONTAINER_NAME=hassio-cluster-build-$$
|
||||||
DOCKER_PUSH="false"
|
DOCKER_PUSH="true"
|
||||||
DOCKER_CACHE="true"
|
DOCKER_CACHE="true"
|
||||||
DOCKER_WITH_LATEST="true"
|
DOCKER_WITH_LATEST="true"
|
||||||
DOCKER_HUB=homeassistant
|
DOCKER_HUB=homeassistant
|
||||||
|
@ -38,8 +38,8 @@ Options:
|
||||||
|
|
||||||
-a, --arch armhf|aarch64|i386|amd64
|
-a, --arch armhf|aarch64|i386|amd64
|
||||||
Arch for Hass.IO build.
|
Arch for Hass.IO build.
|
||||||
-p, --push
|
-t, --test
|
||||||
Upload the build to docker hub.
|
Don't upload the build to docker hub.
|
||||||
-n, --no-cache
|
-n, --no-cache
|
||||||
Disable build from cache
|
Disable build from cache
|
||||||
EOF
|
EOF
|
||||||
|
@ -65,8 +65,8 @@ while [[ $# -gt 0 ]]; do
|
||||||
ARCH=$2
|
ARCH=$2
|
||||||
shift
|
shift
|
||||||
;;
|
;;
|
||||||
-p|--push)
|
-t|--test)
|
||||||
DOCKER_PUSH="true"
|
DOCKER_PUSH="false"
|
||||||
;;
|
;;
|
||||||
-n|--no-cache)
|
-n|--no-cache)
|
||||||
DOCKER_CACHE="false"
|
DOCKER_CACHE="false"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue