diff options
Diffstat (limited to 'docs/docker.markdown')
-rw-r--r-- | docs/docker.markdown | 23 |
1 files changed, 1 insertions, 22 deletions
diff --git a/docs/docker.markdown b/docs/docker.markdown index 33a58006..b4334e1f 100644 --- a/docs/docker.markdown +++ b/docs/docker.markdown @@ -2,9 +2,7 @@ How to test Kanboard with Docker? ================================= Kanboard can run with [Docker](https://www.docker.com). -You can use the public image or build your own image from the `Dockerfile`. - -Actually, the Docker image is based on the master branch (development version). +There is a `Dockerfile` in the repository to build your own container. Build your own Docker image --------------------------- @@ -21,25 +19,6 @@ To run your image in background on the port 80: docker run -d --name kanboard -p 80:80 -t youruser/kanboard:master ``` -Run the public Kanboard image ------------------------------ - -This image is stored on the [Docker Hub](https://hub.docker.com). - -Fetch the image on your machine: - -```bash -docker pull kanboard/kanboard:master -``` - -Run the image: - -```bash -docker run -d --name kanboard -p 80:80 -t kanboard/kanboard:master -``` - -Note: This image is not necessary up to date - Store your data on a volume --------------------------- |