[bitnami/redmine] Release 6.0.5-debian-12-r8 (#82722)

Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com>
This commit is contained in:
Bitnami Bot
2025-06-27 09:14:52 +02:00
committed by GitHub
parent f1f02f230d
commit d8c1198c1d
2 changed files with 33 additions and 1 deletions

View File

@@ -8,7 +8,7 @@ ARG TARGETARCH
LABEL com.vmware.cp.artifact.flavor="sha256:c50c90cfd9d12b445b011e6ad529f1ad3daea45c26d20b00732fae3cd71f6a83" \
org.opencontainers.image.base.name="docker.io/bitnami/minideb:bookworm" \
org.opencontainers.image.created="2025-06-26T07:16:13Z" \
org.opencontainers.image.created="2025-06-27T06:51:04Z" \
org.opencontainers.image.description="Application packaged by Broadcom, Inc." \
org.opencontainers.image.documentation="https://github.com/bitnami/containers/tree/main/bitnami/redmine/README.md" \
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/redmine" \

View File

@@ -0,0 +1,32 @@
# Copyright Broadcom, Inc. All Rights Reserved.
# SPDX-License-Identifier: APACHE-2.0
services:
postgresql:
image: docker.io/bitnami/postgresql:latest
volumes:
- 'postgresql_data:/bitnami/postgresql'
environment:
- ALLOW_EMPTY_PASSWORD=yes
- POSTGRESQL_USERNAME=bn_redmine
- POSTGRESQL_DATABASE=bitnami_redmine
redmine:
image: docker.io/bitnami/redmine:6
ports:
- '80:3000'
volumes:
- 'redmine_data:/bitnami/redmine'
depends_on:
- postgresql
environment:
- ALLOW_EMPTY_PASSWORD=yes
- REDMINE_DATABASE_TYPE=postgresql
- REDMINE_DATABASE_HOST=postgresql
- REDMINE_DATABASE_PORT_NUMBER=5432
- REDMINE_DATABASE_USER=bn_redmine
- REDMINE_DATABASE_NAME=bitnami_redmine
volumes:
postgresql_data:
driver: local
redmine_data:
driver: local