Skip to content

Commit

Permalink
Update README with use of docker tags
Browse files Browse the repository at this point in the history
Explain how we tag our images and the recommended approach.
  • Loading branch information
JaimeLennox committed Oct 14, 2018
1 parent e345a15 commit a3944be
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -226,10 +226,19 @@ ssh-key: |
```bash
docker run --restart=on-failure \
-v "$(pwd)":/configuration \
smarkets/marge-bot \
smarkets/marge-bot:stable \
--config-file=/configuration/marge-bot-config.yaml
```
Note the use of the stable tag, which will use the latest released version.
Without this, by default docker will use the `latest` tag, which corresponds to
the HEAD commit of the `master` branch. Feel free to use this instead (or the
`master` tag, to be more precise) if you want the latest updates, at the risk
of possible bugs.
You can also specify a particular version as a tag, e.g.
`smarkets/marge-bot:0.7.0`.
### Running marge-bot in kubernetes
It's also possible to run marge in kubernetes, e.g. here's how you use a ktmpl
template:
Expand Down

0 comments on commit a3944be

Please sign in to comment.