카테고리 없음
Redmine Plugin Install
cozynow
2021. 1. 2. 01:14
version: '2'
services:
mariadb:
image: 'docker.io/bitnami/mariadb:10.3-debian-10'
environment:
# ALLOW_EMPTY_PASSWORD is recommended only for development.
- ALLOW_EMPTY_PASSWORD=yes
- MARIADB_USER=bn_redmine
- MARIADB_DATABASE=bitnami_redmine
volumes:
- 'mariadb_data:/bitnami'
redmine:
image: 'docker.io/bitnami/redmine:4-debian-10'
environment:
# ALLOW_EMPTY_PASSWORD is recommended only for development.
- ALLOW_EMPTY_PASSWORD=yes
- REDMINE_DATABASE_HOST=mariadb
- REDMINE_DATABASE_PORT_NUMBER=3306
- REDMINE_DATABASE_USER=bn_redmine
- REDMINE_DATABASE_NAME=bitnami_redmine
ports:
- '3000:3000'
volumes:
- 'redmine_data:/bitnami'
depends_on:
- mariadb
volumes:
mariadb_data:
driver: local
redmine_data:
driver: local
참고 : https://github.com/bitnami/containers/tree/main/bitnami/redmine#how-to-use-this-image
레드마인 플러그인의 최소한 아래 플러그인을 설치해야 좋다.
- Redmine Agile plugin : http://redmineup.com/pages/plugins/agile
- Redmine CKEditor plugin : http://github.com/a-ono/redmine_ckeditor
- Redmine Drawio pluginWiki macro plugin : https://github.com/mikitex70/redmine_drawio
- Redmine Github Hook plugin : https://github.com/koppen/redmine_github_hook
- Image Clipboard PasteAllow pasting an image from the clipboard into the comment box on the formcredativ Ltd3.3.0
- Redmine (Monitoring & Controlling | Monitoramento & Controle): https://github.com/alexmonteiro/Redmine-Monitoring-Controlling
- Redmine SlackSlack chat integration: https://github.com/sciyoshi/redmine-slack
mikitex70 - Overview
mikitex70 has 15 repositories available. Follow their code on GitHub.
github.com
Redmine Agile Plugin for Agile Project Management | RedmineUP
Redmine Agile Plugin gives you access to drag&drop agile board, swimlanes, Sprint planner, Story Points, WIP limits. Scrum and Kanban ready. Learn more
www.redmineup.com
Redmine Agile Plugin for Agile Project Management | RedmineUP
Redmine Agile Plugin gives you access to drag&drop agile board, swimlanes, Sprint planner, Story Points, WIP limits. Scrum and Kanban ready. Learn more
www.redmineup.com
Redmine Docker-Compose