2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

dockerのredmineインストールとプラグインの導入

Posted at

redmineインストール:

イメージ取得:

$ docker pull redmine 

イメージ実行:
ローカルの80ポートに投げる場合:

$ docker run -d -p 80:3000

ブラウザで(http://0.0.0.0:80) redmineを開くる

docker psで実行状況を確認できる。

redmineの中に入る:

$ docker exec -it [CONTAINER ID ] bash 

プラグインの導入(redmine_slack):

まず、redmineの中に入る

$ docker exec -it [CONTAINER ID ] bash 

slackをダウンロードする

# cd /usr/src/redmine/plugins
# git clone https://github.com/sciyoshi/redmine-slack.git plugins/redmine_slack

bundleについての設定:

# bundle update
# bundle install
# bundle exec rake redmine:plugins:migrate RAILS_ENV=production
# exit

redmineコンテナーを再起動する:

$ docker restart [CONTAINER ID ]

redmineのプラグインの画面を開く
[管理]→[プラグイン]

(以下のリンクで開く可能)

http://0.0.0.0/admin/plugins
2
3
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
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?