diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-11-01 18:23:15 -0400 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-11-01 18:23:15 -0400 |
commit | 2237def25de103aa0c1e998d11387891389b2872 (patch) | |
tree | f909202d107bab24c2ea7c7c571f7633163d245a /docs | |
parent | 78610b0a9766dd9d2e63af8d7a7df3e9d2f76bf9 (diff) |
Fix typo in Docker documentation
Diffstat (limited to 'docs')
-rw-r--r-- | docs/docker.markdown | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/docker.markdown b/docs/docker.markdown index 92fcf2c3..33a58006 100644 --- a/docs/docker.markdown +++ b/docs/docker.markdown @@ -12,7 +12,7 @@ Build your own Docker image From your kanboard directory run the following command: ```bash -docker build -t youruser\kanboard:master . +docker build -t youruser/kanboard:master . ``` To run your image in background on the port 80: @@ -38,6 +38,8 @@ Run the image: 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 --------------------------- |