Updated Docker (markdown)

Lauri Ojansivu 2018-04-11 00:36:57 +03:00
parent c22afd1e3a
commit 89aee7d0a3

@ -4,15 +4,15 @@
[Many tags available](https://quay.io/repository/wekan/wekan?tab=tags)
Example for Wekan v0.80:
Example for Wekan v0.81:
```
docker run -d --restart=always --name wekan-db mongo:3.2.19
docker run -d --restart=always --name wekan --link "wekan-db:db" -e "MONGO_URL=mongodb://db" -e "ROOT_URL=http://192.168.1.200:8080" -p 8080:80 quay.io/wekan/wekan:v0.80
docker run -d --restart=always --name wekan --link "wekan-db:db" -e "MONGO_URL=mongodb://db" -e "ROOT_URL=http://192.168.1.200:8080" -p 8080:80 quay.io/wekan/wekan:v0.81
```
For latest development version, use without tag:
```
quay.io/wekan/wekan:v0.80
quay.io/wekan/wekan:v0.81
```
There is much more complete well-documented `docker-compose.yml` at [wekan-mongodb](https://github.com/wekan/wekan-mongodb) with instructions on installing there also.