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 3f973b0 commit 6728810
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -226,10 +226,18 @@ 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 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 6728810

Please sign in to comment.