Sign inSign up

bernigaud/redmine

By bernigaud

Updated almost 11 years ago

Redmine for my server HAL Forked from sameersbn/redmine

Image
0

568

bernigaud/redmine repository overview

Upgrade DB:

docker run --name redmine -i -t --rm
-e "DB_HOST=192.168.1.2" -e "DB_NAME=redmine_default"
-e "DB_USER=root" -e "DB_PASS=xxxxx"
-e "SMTP_USER=[email protected]" -e "SMTP_PASS=xxxxx"
-p 5022:22 -p 5080:80
-v /opt/redmine/files:/redmine/files bernigaud/redmine:latest app:db:migrate

START

sudo docker run -d -h redmine.local.host -p 5022:22 -p 5080:80
-e "DB_HOST=192.168.1.2" -e "DB_NAME=redmine_default" -e "DB_USER=redmine" -e "DB_PASS=xxxxxx"
-e "SMTP_USER=[email protected]" -e "SMTP_PASS=xxxxx"
-v /opt/redmine/files:/redmine/files bernigaud/redmine

ATTENDRE la migration de la DB !!

SSH + info:

IP: docker inspect <id|name> | grep IPAd pwd: docker logs <id|name> | grep '^User: ' ssh root@localhost -p 5022

Config Apache2

VirtualHost and: ProxyPass / http://localhost:5080/ ProxyPassReverse / http://localhost:5080/

Tag summary

Content type

Image

Digest

sha256:e43715e5e

Size

379.4 MB

Last updated

almost 11 years ago

docker pull bernigaud/redmine