mirror of
https://github.com/wekan/wekan.git
synced 2025-04-23 13:37:09 -04:00
Added working Docker example. Using MongoDB v3.2.11
This commit is contained in:
parent
e2e3e65d2f
commit
739715b619
2 changed files with 9 additions and 2 deletions
|
@ -50,7 +50,14 @@ that by providing one-click installation on various platforms.
|
|||
|
||||
[VirtualBox][virtualbox]
|
||||
|
||||
Docker: [Docker image][docker_image] (needs updating), [Docs][docker_docs], [Docker Nginx proxy][docker_nginxproxy], [Docker Issue][docker_issue]
|
||||
Docker: [Docker image][docker_image], [Docs][docker_docs], [Docker Nginx proxy][docker_nginxproxy], [Docker Issue][docker_issue]
|
||||
|
||||
Docker example, running latest Wekan:
|
||||
```
|
||||
docker run -d --restart=always --name wekan-db mongo:3.2.11
|
||||
|
||||
docker run -d --restart=always --name wekan --link "wekan-db:db" -e "MONGO_URL=mongodb://db" -e "ROOT_URL=http://localhost:8080" -p 8080:80 mquandalle/wekan:latest
|
||||
```
|
||||
|
||||
[Debian Wheezy 64bit][debian_wheezy]
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@ version: '2'
|
|||
services:
|
||||
|
||||
wekandb:
|
||||
image: mongo:3.4
|
||||
image: mongo:3.2.11
|
||||
container_name: wekan-db
|
||||
restart: always
|
||||
command: mongod --smallfiles --oplogSize 128
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue