LoginSignup
3
5

More than 5 years have passed since last update.

CentOS7上にDockerコンテナでRedmine3をインストールしBacklogsプラグインをインストールする

Posted at

ほぼ自分のための備忘録。

CentOS7にDockerコンテナ追加し、Redmine3を構築する。

下記記事の後半にDockerを使った構築方法が記載されています。
実際に記事の手順で構築しましたがそのままの手順でRedmineへのログインまで出来ました。
https://github.com/y503unavailable/redmine-centos-ansible

redmineに関する有用な情報が得られるのでhttps://toot.redmine.jpに参加しよう!

Backlogsプラグインを追加する。

下記Dockerコンテナ内での作業します(なのでrootです)。

cd /var/lib/redmine
git clone -b feature/redmine3 
git://github.com/backlogs/redmine_backlogs.git 
cd redmine_backlogs
vi Gemfile
nokogiriとcapibaraをコメントアウト(行頭に#を追加)
cd ../..
bundle install --without development test
RAILS_ENV=production bundle exec rake redmine:backlogs:install

以上。

3
5
1

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