Skip to content

Instantly share code, notes, and snippets.

@trivoallan
Last active July 24, 2018 14:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save trivoallan/6d8ed58511280c1bc847b715fad46e3f to your computer and use it in GitHub Desktop.
Save trivoallan/6d8ed58511280c1bc847b715fad46e3f to your computer and use it in GitHub Desktop.
redmine-agile
/redmine_agile-1_4_6-pro.zip

redmine-agile

Utilisation

git clone git@gist.github.com:6d8ed58511280c1bc847b715fad46e3f.git redmine-agile

Placer le fichier redmine_agile-1_4_6-pro.zip dans le dossier redmine-agile.

cd redmine-agile
docker-compose up

C'est prêt : http://localhost:3000

version: '3'
services:
redmine:
build: .
depends_on:
- db
environment:
REDMINE_DB_MYSQL: db
REDMINE_DB_PASSWORD: root
REDMINE_PLUGINS_MIGRATE: "true"
ports:
- 3000:3000
restart: always
db:
image: mariadb:10
environment:
MYSQL_DATABASE: redmine
MYSQL_ROOT_PASSWORD: root
restart: always
FROM redmine:3.4
COPY redmine_agile-1_4_6-pro.zip /usr/src/redmine/plugins/
RUN apt-get update \
&& apt-get -y install unzip \
&& cd /usr/src/redmine/plugins/ \
&& unzip redmine_agile-1_4_6-pro.zip \
&& rm redmine_agile-1_4_6-pro.zip
RUN bundle install --without development test --no-deployment
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment