LoginSignup
2
5

More than 5 years have passed since last update.

MITなカンバンWebアプリWekanをDockerで

Posted at

Wekanをセットアップ

環境

/etc/redhat-release
CentOS Linux release 7.0.1406 (Core) 

手順

# systemctl stop firewalld
# systemctl disable firewalld
# setenforce 0
# timedatectl set-timezone Asia/Tokyo
# timedatectl set-time 13:00:00

dockerとdocker-composeをインストールします

# yum install -y docker
# systemctl start docker
# systemctl enable docker
# curl -L https://github.com/docker/compose/releases/download/1.22.0/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose
# chmod +x /usr/local/bin/docker-compose

curl: (35) Peer reports incompatible or unsupported protocol version.と言われたら

# yum -y update nss curl libcurl

docker-compose.ymlを用意します

# yum -y install git
# git clone https://github.com/wekan/wekan-mongodb.git

docker-composeで起動します

# cd wekan-mongodb
# docker-compose up -d

確認

ブラウザでhttp://%YOUR_SERVER%を開いて、見えればOK

参考

2
5
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
2
5