1
0
mirror of https://github.com/containrrr/watchtower.git synced 2025-02-04 19:15:55 +02:00

Fix typos (#554)

This commit is contained in:
Pierre Grimaud 2020-05-29 10:59:52 +02:00 committed by GitHub
parent cd21516709
commit bd9246b4d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

View File

@ -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

View File

@ -133,4 +133,4 @@ and for `<PATH_TO_HOME_DIR>/.docker/config.json`:
}
```
*Note:* `osxkeychain` can be changed to your prefered credentials helper.
*Note:* `osxkeychain` can be changed to your preferred credentials helper.

View File

@ -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)