diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-10-08 22:39:21 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-10-08 22:39:21 -0400 |
commit | e3521db6a83639b409e2dd7abb19417f3ac0a9cd (patch) | |
tree | 99cb12980f03d4ef302de332a15982a289828921 /doc/docker.markdown | |
parent | 586c600040123642a18ae77571d9414860a338f4 (diff) |
Update docker documentation
Diffstat (limited to 'doc/docker.markdown')
-rw-r--r-- | doc/docker.markdown | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/doc/docker.markdown b/doc/docker.markdown index 44f3b976..fe72a6c8 100644 --- a/doc/docker.markdown +++ b/doc/docker.markdown @@ -4,8 +4,18 @@ How to run Kanboard with Docker? Kanboard can run easily with [Docker](https://www.docker.com). There is a `Dockerfile` in the repository to build your own container. -Use the automated build ------------------------ +Use the stable version +---------------------- + +To fetch the latest stable release of Kanboard use the tag **stable**: + +```bash +docker pull kanboard/kanboard +docker run -d --name kanboard -p 80:80 -t kanboard/kanboard:stable +``` + +Use the development version (automated build) +--------------------------------------------- Every new commit on the repository trigger a new build on [Docker Hub](https://registry.hub.docker.com/u/kanboard/kanboard/). @@ -45,3 +55,5 @@ References - [Official Kanboard images](https://registry.hub.docker.com/u/kanboard/kanboard/) - [Docker documentation](https://docs.docker.com/) +- [Dockerfile stable version](https://github.com/kanboard/docker/blob/master/Dockerfile) +- [Dockerfile dev version](https://github.com/fguillot/kanboard/blob/master/Dockerfile) |