Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed docs for master tag since not using latest #117

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ A Docker swarm service for automatically updating your services whenever their b
docker service create --name shepherd \
--constraint "node.role==manager" \
--mount type=bind,source=/var/run/docker.sock,target=/var/run/docker.sock,ro \
containrrr/shepherd
containrrr/shepherd:master

### Or with Docker Compose

Expand All @@ -19,7 +19,7 @@ A Docker swarm service for automatically updating your services whenever their b
...
shepherd:
build: .
image: containrrr/shepherd
image: containrrr/shepherd:master
volumes:
- /var/run/docker.sock:/var/run/docker.sock
deploy:
Expand Down Expand Up @@ -65,7 +65,7 @@ You need to make the secret available to shepherd with the `secrets` key, and pa
```
services:
app:
image: containrrr/shepherd
image: containrrr/shepherd:master
environment:
REGISTRIES_FILE: /var/run/secrets/shepherd-registries-auth
secrets:
Expand Down Expand Up @@ -113,7 +113,7 @@ Example:
--env TZ=Europe/Berlin \
--mount type=bind,source=/var/run/docker.sock,target=/var/run/docker.sock,ro \
--mount type=bind,source=/root/.docker/config.json,target=/root/.docker/config.json,ro \
containrrr/shepherd
containrrr/shepherd:master

## Running on a cron schedule

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: "3"
services:
app:
build: .
image: containrrr/shepherd
image: containrrr/shepherd:master
environment:
TZ: 'US/Eastern'
SLEEP_TIME: '5m'
Expand Down