mirror of
https://github.com/wekan/wekan.git
synced 2026-03-09 23:22:33 +01:00
Update docker command for starting wekan
parent
a5634b3120
commit
878bc4222d
1 changed files with 3 additions and 2 deletions
|
|
@ -54,8 +54,9 @@ reboot
|
|||
7) As normal user (examples: ec2-user, virtual) (root works still too), install MongoDB and Wekan, you can change 8080 to be another port:
|
||||
|
||||
```
|
||||
docker run -d --restart=always --name wekan-db mongo
|
||||
docker run -d --restart=always --name wekan --link "wekan-db:db" -e "MONGO_URL=mongodb://db" -e "ROOT_URL=http://localhost" -p 8080:80 mquandalle/wekan:0.10.0
|
||||
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
|
||||
```
|
||||
|
||||
8) Now Wekan is available at http://ip-address:port , for example: http://192.168.100.50:8080 . Wekan starts at boot, and restarts on error conditions.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue