Skip to content

Commit b46d9b7

Browse files
committed
Fix docker network command typo
1 parent 55a0a40 commit b46d9b7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docker/docker-network-create.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@ docker_network_create()
4848

4949
# Create docker network
5050
if [[ "$LOCAL_ENABLE_IPv6" == true ]]; then
51-
if ! docker netowrk create $LOCAL_NETWORK_NAME --ipv6 --subnet=$LOCAL_IPv6_SUBNET; then
51+
if ! docker network create $LOCAL_NETWORK_NAME --ipv6 --subnet=$LOCAL_IPv6_SUBNET; then
5252
ERROR_DOCKER_NETWORK_CREATE=true
5353
fi
5454
else
55-
if ! docker netowrk create $LOCAL_NETWORK_NAME; then
55+
if ! docker network create $LOCAL_NETWORK_NAME; then
5656
ERROR_DOCKER_NETWORK_CREATE=true
5757
fi
5858
fi

0 commit comments

Comments
 (0)