9
10

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 5 years have passed since last update.

Redmine3.2のdockerイメージ作った(UML、ナリッジベース、Gitlab連携)

Last updated at Posted at 2016-01-23

3.2で良くなった点

  • スマホ表示対応
  • UPした画像のサムネイルが下にも表示されるようになった。

Gitlab連携

Redmineにhookプラグインを入れるのではなく、
Gitlabのリポジトリをマウントし参照することにした。

Gitlab起動

/data/gitlab/docker-compose.yml
gitlab:
  hostname: labce
  image: gitlab/gitlab-ce:latest
  volumes:
    - ./etc:/etc/gitlab
    - ./logs:/var/log/gitlab
    - ./data:/var/opt/gitlab
  ports:
    - "10080:80"
    - "10022:22"
起動
cd /data/gitlab && docker-compose up -d

Redmine起動

/data/redmine3/docker-compose.yml
redmine3:
  image: tukiyo3/redmine:3.2-kb
  volumes:
    - ./sqlite:/usr/src/redmine/sqlite
    - ./files:/usr/src/redmine/files
    - ../gitlab/data/git-data/repositories:/gitlab:ro
  ports:
    - 3000:3000
起動
cd /data/redmine3 && docker-compose up -d

repo-gitlab.png

repo-redmine0.png

repo-redmine.png


設定

  • 管理>設定
    • 全般>テキストの書式>Markdown
    • 表示>添付ファイルのサムネイル画像を表示>チェック
    • プラグイン>設定>記事要約の非表示>チェック
      • タグを複数書くのはカンマ区切り。

ナリッジベースを既存DB流用する場合

  • migrateが必要。
migrate
rake redmine:plugins:migrate NAME=redmine_knowledgebase

PlantUML

uml.png

書き方
{{plantuml
3-> 3.2: スマホ対応,
3.2-> 3.2kb: ナリッジベース
3.2kb-> 3.2kbuml: PlantUML使用,日本語フォント
}}

wiki_external_filter.png

9
10
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
9
10

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?