File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## [ Unreleased]
99
10+ ## [ v6.1.1-5] - 2026-02-24
11+ ### Fixed
12+ - [ #185 ] fix inter dogu https communication with self sigend certificates
13+
1014## [ v6.1.1-4] - 2026-02-18
1115### Security
1216- [ #183 ] upgrade base image to fix CVE-2025 -61732 and CVE-2025 -68121
Original file line number Diff line number Diff line change 11FROM registry.cloudogu.com/official/base:3.23.3-4
22
33LABEL NAME="official/redmine" \
4- VERSION="6.1.1-4 " \
4+ VERSION="6.1.1-5 " \
55 maintainer="hello@cloudogu.com"
66
77ENV USER=redmine \
Original file line number Diff line number Diff line change @@ -6,6 +6,11 @@ Technische Details zu einem Release finden Sie im zugehörigen [Changelog](https
66
77## [ Unreleased]
88
9+ ## [ v6.1.1-5] - 2026-02-24
10+ ### Fixed
11+ - [ #185 ] HTTPS-Kommunikation von Redmine zu einem anderen Dogu mit
12+ selbstsignierten Zertifikaten behoben
13+
914## [ v6.1.1-4] - 2026-02-18
1015### Security
1116- [ #183 ] Sicherheitslücke CVE-2025 -61732 und CVE-2025 -68121 geschlossen
Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ Technical details on a release can be found in the corresponding [Changelog](htt
66
77## [ Unreleased]
88
9+ ## [ v6.1.1-5] - 2026-02-24
10+ ### Fixed
11+ - [ #185 ] Fixed inter dogu https communication with self sigend certificates
12+
913## [ v6.1.1-4] - 2026-02-18
1014### Security
1115* Fixed CVE-2025 -61732 and CVE-2025 -68121
Original file line number Diff line number Diff line change 11{
22 "Name" : " official/redmine" ,
3- "Version" : " 6.1.1-4 " ,
3+ "Version" : " 6.1.1-5 " ,
44 "DisplayName" : " Redmine" ,
55 "Description" : " Redmine is a flexible project management web application" ,
66 "Category" : " Development Apps" ,
Original file line number Diff line number Diff line change @@ -176,9 +176,12 @@ function runMain() {
176176 doguctl state " ready"
177177 doguctl config --rm " local_state"
178178
179+ # install ca certificates, to allow communication with other dogus via https
180+ create-ca-certificates.sh
181+
179182 # Start redmine
180183 echo " Starting redmine..."
181- exec su - redmine -c " RAILS_MASTER_KEY=\$ (cat ${WORKDIR} /config/credentials/production.key) AUTO_MANAGED=true RAILS_RELATIVE_URL_ROOT=${RAILS_RELATIVE_URL_ROOT} puma -e ${RAILS_ENV} -p 3000"
184+ exec su - redmine -c " RAILS_MASTER_KEY=\$ (cat ${WORKDIR} /config/credentials/production.key) AUTO_MANAGED=true RAILS_RELATIVE_URL_ROOT=${RAILS_RELATIVE_URL_ROOT} SSL_CERT_FILE=/etc/ssl/ca-certificates.crt puma -e ${RAILS_ENV} -p 3000"
182185}
183186
184187# make the script only run when executed, not when sourced from bats tests)
You can’t perform that action at this time.
0 commit comments