LoginSignup
0
0

More than 1 year has passed since last update.

DockerコマンドだけでWekanを起動する

Posted at

はじめに

ローカルで自分の管理用などに簡単に立てたいと思った。
docker-composeなどを使用した方法はころがっているが、そんなのいらない。コマンドだけでやりたい。

それでは、早速。

1. まずは、MongoDBを起動

docker run -d --restart=always --name wekan-db mongo

2. 次に、Wekanを起動

docker run -d --restart=always --name wekan --link "wekan-db:db" -e "WITH_API=true" -e "MONGO_URL=mongodb://wekan-db:27017/wekan" -e "ROOT_URL=http://localhost:8080" -p 8080:8080 wekanteam/wekan

http://localhost:8080/アクセスしてみる。

ドキュメント

ここに方法が乗っている。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0