mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 15:30:13 +01:00
Updated Docker (markdown)
parent
3293406faa
commit
dda2ff7f99
1 changed files with 8 additions and 6 deletions
14
Docker.md
14
Docker.md
|
|
@ -23,20 +23,22 @@ Added 2017-05-06 to see if it has better debugging of failed builds than Docker
|
|||
|
||||
### `docker run` examples
|
||||
|
||||
- No build step and pull from the [mquandalle dockerhub](https://hub.docker.com/r/mquandalle/wekan/builds/)
|
||||
```
|
||||
docker run -d --restart=always --name wekan-db mongo:3.2.14
|
||||
```
|
||||
|
||||
- No build step, pull from the [wekanteam dockerhub](https://hub.docker.com/r/wekanteam/wekan/builds/) and
|
||||
specify docker variables
|
||||
|
||||
```
|
||||
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:latest
|
||||
```
|
||||
|
||||
- No build step and pull from the [mquandalle dockerhub](https://hub.docker.com/r/mquandalle/wekan/builds/)
|
||||
|
||||
```
|
||||
docker run -d --restart=always --name wekan-db mongo:3.2.14
|
||||
```
|
||||
|
||||
### `docker-compose` examples
|
||||
|
||||
- No build step and pull from the [mquandalle dockerhub](https://hub.docker.com/r/mquandalle/wekan/builds/)
|
||||
- No build step and pull from the [wekanteam dockerhub](https://hub.docker.com/r/wekanteam/wekan/builds/)
|
||||
|
||||
```
|
||||
sudo docker-compose up -d --nobuild
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue