From bd9246b4d07afa2d55afdc7c3f14ec8b0f3efaa6 Mon Sep 17 00:00:00 2001 From: Pierre Grimaud Date: Fri, 29 May 2020 10:59:52 +0200 Subject: [PATCH] Fix typos (#554) --- CONTRIBUTING.md | 2 +- docs/private-registries.md | 2 +- scripts/lifecycle-tests.sh | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 82b1b1b..0202384 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -3,7 +3,7 @@ To contribute code changes to this project you will need the following developme * [Go](https://golang.org/doc/install) * [Docker](https://docs.docker.com/engine/installation/) -As watchtower utilizes go modules for vendor locking, you'll need atleast Go 1.11. +As watchtower utilizes go modules for vendor locking, you'll need at least Go 1.11. You can check your current version of the go language as follows: ```bash ~ $ go version diff --git a/docs/private-registries.md b/docs/private-registries.md index 3606c2a..dab0c46 100644 --- a/docs/private-registries.md +++ b/docs/private-registries.md @@ -133,4 +133,4 @@ and for `/.docker/config.json`: } ``` -*Note:* `osxkeychain` can be changed to your prefered credentials helper. +*Note:* `osxkeychain` can be changed to your preferred credentials helper. diff --git a/scripts/lifecycle-tests.sh b/scripts/lifecycle-tests.sh index dd41823..9b2dbd7 100755 --- a/scripts/lifecycle-tests.sh +++ b/scripts/lifecycle-tests.sh @@ -89,7 +89,7 @@ builddocker # Run container docker run -d -p 0.0.0.0:8888:8888 --name $CONTAINER $IMAGE:latest >> /dev/null sleep 1 -echo "Container $CONTAINER is runnning" +echo "Container $CONTAINER is running" # Test default value RESP=$(curl -s http://localhost:8888) @@ -126,7 +126,7 @@ docker run -d -p 0.0.0.0:8888:8888 \ --label=com.centurylinklabs.watchtower.lifecycle.post-update="echo container > /opt/test/value.txt" \ --name $CONTAINER $IMAGE:latest >> /dev/null sleep 1 -echo "Container $CONTAINER is runnning" +echo "Container $CONTAINER is running" # Test default value RESP=$(curl -s http://localhost:8888) @@ -170,7 +170,7 @@ docker run -d -p 0.0.0.0:8989:8888 \ --link $CONTAINER \ --name $LINKED_CONTAINER $LINKED_IMAGE:latest >> /dev/null sleep 1 -echo "Container $CONTAINER and $LINKED_CONTAINER are runnning" +echo "Container $CONTAINER and $LINKED_CONTAINER are running" # Test default value RESP=$(curl -s http://localhost:8888)