mirror of
https://github.com/bitnami/containers.git
synced 2026-03-06 06:58:01 +08:00
[bitnami/redmine] Release redmine-5.1.4-debian-12-r3 (#74908)
Signed-off-by: Bitnami Bot <bitnami-bot@vmware.com>
This commit is contained in:
@@ -8,11 +8,11 @@ ARG TARGETARCH
|
||||
|
||||
LABEL com.vmware.cp.artifact.flavor="sha256:c50c90cfd9d12b445b011e6ad529f1ad3daea45c26d20b00732fae3cd71f6a83" \
|
||||
org.opencontainers.image.base.name="docker.io/bitnami/minideb:bookworm" \
|
||||
org.opencontainers.image.created="2024-11-12T00:21:09Z" \
|
||||
org.opencontainers.image.created="2024-11-14T16:24:42Z" \
|
||||
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.licenses="Apache-2.0" \
|
||||
org.opencontainers.image.ref.name="5.1.4-debian-12-r2" \
|
||||
org.opencontainers.image.ref.name="5.1.4-debian-12-r3" \
|
||||
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/redmine" \
|
||||
org.opencontainers.image.title="redmine" \
|
||||
org.opencontainers.image.vendor="Broadcom, Inc." \
|
||||
@@ -25,14 +25,14 @@ ENV OS_ARCH="${TARGETARCH:-amd64}" \
|
||||
COPY prebuildfs /
|
||||
SHELL ["/bin/bash", "-o", "errexit", "-o", "nounset", "-o", "pipefail", "-c"]
|
||||
# Install required system packages and dependencies
|
||||
RUN install_packages acl ca-certificates curl ghostscript git gsfonts imagemagick libaudit1 libbrotli1 libbsd0 libcap-ng0 libcom-err2 libcrypt1 libcurl4 libedit2 libffi8 libgcc-s1 libgmp10 libgnutls30 libgssapi-krb5-2 libhogweed6 libicu72 libidn2-0 libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 libldap-2.5-0 liblz4-1 liblzma5 libmariadb3 libmd0 libncurses6 libnettle8 libnghttp2-14 libp11-kit0 libpam0g libpcre2-8-0 libpq5 libpsl5 libreadline-dev libreadline8 librtmp1 libsasl2-2 libssh2-1 libssl-dev libssl3 libstdc++6 libtasn1-6 libtinfo6 libunistring2 libuuid1 libxml2 libxslt1.1 libyaml-dev libzstd1 procps sqlite3 zlib1g
|
||||
RUN install_packages acl ca-certificates curl ghostscript git gsfonts imagemagick libaudit1 libbrotli1 libbsd0 libcap-ng0 libcom-err2 libcrypt1 libcurl4 libedit2 libffi8 libgcc-s1 libgmp10 libgnutls30 libgssapi-krb5-2 libhogweed6 libicu72 libidn2-0 libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 libldap-2.5-0 liblz4-1 liblzma5 libmariadb3 libmd0 libncurses6 libnettle8 libnghttp2-14 libp11-kit0 libpam0g libpcre2-8-0 libpq5 libpsl5 libreadline-dev libreadline8 librtmp1 libsasl2-2 libssh2-1 libssl-dev libssl3 libstdc++6 libtasn1-6 libtinfo6 libunistring2 libuuid1 libxml2 libxslt1.1 libyaml-0-2 libyaml-dev libzstd1 procps sqlite3 zlib1g
|
||||
RUN mkdir -p /tmp/bitnami/pkg/cache/ ; cd /tmp/bitnami/pkg/cache/ ; \
|
||||
COMPONENTS=( \
|
||||
"yq-4.44.3-6-linux-${OS_ARCH}-debian-12" \
|
||||
"ruby-3.1.6-2-linux-${OS_ARCH}-debian-12" \
|
||||
"postgresql-client-17.0.0-1-linux-${OS_ARCH}-debian-12" \
|
||||
"ruby-3.2.6-0-linux-${OS_ARCH}-debian-12" \
|
||||
"postgresql-client-17.1.0-0-linux-${OS_ARCH}-debian-12" \
|
||||
"mysql-client-11.4.4-0-linux-${OS_ARCH}-debian-12" \
|
||||
"redmine-5.1.4-0-linux-${OS_ARCH}-debian-12" \
|
||||
"redmine-5.1.4-1-linux-${OS_ARCH}-debian-12" \
|
||||
) ; \
|
||||
for COMPONENT in "${COMPONENTS[@]}"; do \
|
||||
if [ ! -f "${COMPONENT}.tar.gz" ]; then \
|
||||
|
||||
32
bitnami/redmine/5/debian-12/docker-compose-postgresql.yml
Normal file
32
bitnami/redmine/5/debian-12/docker-compose-postgresql.yml
Normal file
@@ -0,0 +1,32 @@
|
||||
# Copyright Broadcom, Inc. All Rights Reserved.
|
||||
# SPDX-License-Identifier: APACHE-2.0
|
||||
|
||||
services:
|
||||
postgresql:
|
||||
image: docker.io/bitnami/postgresql:17
|
||||
volumes:
|
||||
- 'postgresql_data:/bitnami/postgresql'
|
||||
environment:
|
||||
- ALLOW_EMPTY_PASSWORD=yes
|
||||
- POSTGRESQL_USERNAME=bn_redmine
|
||||
- POSTGRESQL_DATABASE=bitnami_redmine
|
||||
redmine:
|
||||
image: docker.io/bitnami/redmine:5
|
||||
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
|
||||
@@ -9,19 +9,19 @@
|
||||
"arch": "amd64",
|
||||
"distro": "debian-12",
|
||||
"type": "NAMI",
|
||||
"version": "17.0.0-1"
|
||||
"version": "17.1.0-0"
|
||||
},
|
||||
"redmine": {
|
||||
"arch": "amd64",
|
||||
"distro": "debian-12",
|
||||
"type": "NAMI",
|
||||
"version": "5.1.4-0"
|
||||
"version": "5.1.4-1"
|
||||
},
|
||||
"ruby": {
|
||||
"arch": "amd64",
|
||||
"distro": "debian-12",
|
||||
"type": "NAMI",
|
||||
"version": "3.1.6-2"
|
||||
"version": "3.2.6-0"
|
||||
},
|
||||
"yq": {
|
||||
"arch": "amd64",
|
||||
|
||||
@@ -32,8 +32,11 @@ declare -a writable_dirs=(
|
||||
"${REDMINE_BASE_DIR}/plugins"
|
||||
"${REDMINE_BASE_DIR}/public/plugin_assets"
|
||||
# Folders that need to be writable for the app to work
|
||||
"${REDMINE_BASE_DIR}/app/assets"
|
||||
"${REDMINE_BASE_DIR}/log"
|
||||
"${REDMINE_BASE_DIR}/tmp"
|
||||
# Redmine create assets during db:migrate step
|
||||
"${REDMINE_BASE_DIR}/public/assets"
|
||||
# Config needs to be writable for actions to update things like tokens or DB credentials
|
||||
"${REDMINE_BASE_DIR}/config"
|
||||
# Redmine creates 'db/schema.rb' file after executing migrations
|
||||
|
||||
@@ -2,4 +2,3 @@ rolling-tags:
|
||||
- "5"
|
||||
- 5-debian-12
|
||||
- 5.1.4
|
||||
- latest
|
||||
|
||||
Reference in New Issue
Block a user