mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 23:40:13 +01:00
Update to Meteor 1.4 based Docker image
parent
73ea363cd8
commit
12609bbc5d
1 changed files with 4 additions and 8 deletions
|
|
@ -4,15 +4,11 @@ It can be wekan-db, mongodb or something else.
|
||||||
1) You can run Wekan on Docker locally like this on http://localhost:8080/
|
1) You can run Wekan on Docker locally like this on http://localhost:8080/
|
||||||
(or other port it you change 8080 in script):
|
(or other port it you change 8080 in script):
|
||||||
```bash
|
```bash
|
||||||
docker run -d --restart=always --name wekan-db mongo:3.2.11
|
docker run -d --restart=always --name wekan-db mongo:3.4.3
|
||||||
|
|
||||||
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
|
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 wekanteam/wekan:meteor-1.4
|
||||||
```
|
```
|
||||||
|
|
||||||
Mongo 3.2.11 used because of bug in 3.4.1:
|
|
||||||
|
|
||||||
https://github.com/wefork/wekan/issues/58
|
|
||||||
|
|
||||||
2) List docker containers, your ID:s will be different:
|
2) List docker containers, your ID:s will be different:
|
||||||
```bash
|
```bash
|
||||||
docker ps
|
docker ps
|
||||||
|
|
@ -20,7 +16,7 @@ docker ps
|
||||||
Result:
|
Result:
|
||||||
```bash
|
```bash
|
||||||
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
|
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
|
||||||
1234wekanid mquandalle/wekan "/bin/sh -c 'bash $ME" About an hour ago Up 46 minutes 0.0.0.0:8080->80/tcp wekan
|
1234wekanid wekanteam/wekan:meteor-1.4 "/bin/sh -c 'bash $ME" About an hour ago Up 46 minutes 0.0.0.0:8080->80/tcp wekan
|
||||||
4321mongoid mongo "/entrypoint.sh mongo" About an hour ago Up 46 minutes 27017/tcp wekan-db
|
4321mongoid mongo "/entrypoint.sh mongo" About an hour ago Up 46 minutes 27017/tcp wekan-db
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
@ -37,7 +33,7 @@ like this:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
> mongo <==== START MONGO CLI
|
> mongo <==== START MONGO CLI
|
||||||
MongoDB shell version: 3.2.7
|
MongoDB shell version: 3.4.3
|
||||||
connecting to: test
|
connecting to: test
|
||||||
Server has startup warnings:
|
Server has startup warnings:
|
||||||
2016-06-25T11:39:55.913+0000 I CONTROL [initandlisten]
|
2016-06-25T11:39:55.913+0000 I CONTROL [initandlisten]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue