diff --git a/bitnami/redmine/6.1/debian-12/Dockerfile b/bitnami/redmine/6.1/debian-12/Dockerfile index 52074403b493..e689c5369d05 100644 --- a/bitnami/redmine/6.1/debian-12/Dockerfile +++ b/bitnami/redmine/6.1/debian-12/Dockerfile @@ -7,7 +7,7 @@ ARG DOWNLOADS_URL="downloads.bitnami.com/files/stacksmith" ARG TARGETARCH LABEL org.opencontainers.image.base.name="docker.io/bitnami/minideb:bookworm" \ - org.opencontainers.image.created="2026-04-09T17:24:06Z" \ + org.opencontainers.image.created="2026-04-15T16:06:31Z" \ 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" \ @@ -27,7 +27,7 @@ RUN --mount=type=secret,id=downloads_url,env=SECRET_DOWNLOADS_URL \ DOWNLOADS_URL=${SECRET_DOWNLOADS_URL:-${DOWNLOADS_URL}} ; \ mkdir -p /tmp/bitnami/pkg/cache/ ; cd /tmp/bitnami/pkg/cache/ || exit 1 ; \ COMPONENTS=( \ - "ruby-3.4.9-0-linux-${OS_ARCH}-debian-12" \ + "ruby-3.4.9-1-linux-${OS_ARCH}-debian-12" \ "yq-4.52.5-1-linux-${OS_ARCH}-debian-12" \ "postgresql-client-18.3.0-0-linux-${OS_ARCH}-debian-12" \ "mysql-client-12.2.2-0-linux-${OS_ARCH}-debian-12" \ @@ -53,7 +53,7 @@ RUN /opt/bitnami/scripts/mysql-client/postunpack.sh RUN /opt/bitnami/scripts/redmine/postunpack.sh ENV APP_VERSION="6.1.2" \ BITNAMI_APP_NAME="redmine" \ - IMAGE_REVISION="4" \ + IMAGE_REVISION="5" \ LD_LIBRARY_PATH="/opt/bitnami/mariadb/lib:/opt/bitnami/postgresql/lib:$LD_LIBRARY_PATH" \ PATH="/opt/bitnami/ruby/bin:/opt/bitnami/common/bin:/opt/bitnami/postgresql/bin:/opt/bitnami/mysql/bin:$PATH" diff --git a/bitnami/redmine/README.md b/bitnami/redmine/README.md index c6517b33e297..66a210b6af5e 100644 --- a/bitnami/redmine/README.md +++ b/bitnami/redmine/README.md @@ -11,7 +11,13 @@ Trademarks: This software listing is packaged by Bitnami. The respective tradema docker run --name redmine bitnami/redmine:latest ``` -**Warning**: This quick setup is only intended for development environments. You are encouraged to change the insecure default credentials and check out the available configuration options in the [Environment Variables](#environment-variables) section for a more secure deployment. +## Using `docker-compose.yml` + +The docker-compose.yaml file of this container can be found in the [Bitnami Containers repository](https://github.com/bitnami/containers/). + +[https://github.com/bitnami/containers/tree/main/bitnami/redmine/docker-compose.yml](https://github.com/bitnami/containers/tree/main/bitnami/redmine/docker-compose.yml) + +Please be aware this file has not undergone internal testing. Consequently, we advise its use exclusively for development or testing purposes. For production-ready deployments, we highly recommend utilizing its associated [Bitnami Helm chart](https://github.com/bitnami/charts/tree/main/bitnami/redmine). ## Why use Bitnami Secure Images? @@ -106,8 +112,6 @@ The following tables list the main variables you can set. | `REDMINE_DAEMON_GROUP` | Redmine system group. | `redmine` | | `REDMINE_DEFAULT_DATABASE_HOST` | Default database server host. | `mariadb` | -When you start the Redmine image, you can adjust the configuration of the instance by passing one or more environment variables either on the docker-compose file or on the `docker run` command line. - ### FIPS configuration in Bitnami Secure Images The Bitnami Redmine Docker image from the [Bitnami Secure Images](https://go-vmware.broadcom.com/contact-us) catalog includes extra features and settings to configure the container with FIPS capabilities. You can configure the next environment variables: @@ -116,19 +120,7 @@ The Bitnami Redmine Docker image from the [Bitnami Secure Images](https://go-vmw ## Logging -The Bitnami Redmine Docker image sends the container logs to `stdout`. To view the logs: - -```console -docker logs redmine -``` - -Or using Docker Compose: - -```console -docker-compose logs redmine -``` - -You can configure the containers [logging driver](https://docs.docker.com/engine/admin/logging/overview/) using the `--log-driver` option if you wish to consume the container logs differently. In the default configuration docker uses the `json-file` driver. +The Bitnami Redmine Docker image sends the container logs to the `stdout`. You can configure the containers [logging driver](https://docs.docker.com/engine/admin/logging/overview/) using the `--log-driver` option if you wish to consume the container logs differently. In the default configuration docker uses the `json-file` driver. ## Customize this image @@ -149,57 +141,6 @@ FROM bitnami/redmine ... ``` -## Maintenance - -### Backing up your container - -To backup your data, configuration and logs, follow these simple steps: - -#### Step 1: Stop the currently running container - -```console -docker stop redmine -``` - -Or using Docker Compose: - -```console -docker-compose stop redmine -``` - -#### Step 2: Run the backup command - -We need to mount two volumes in a container we will use to create the backup: a directory on your host to store the backup in, and the volumes from the container we just stopped so we can access the data. - -```console -docker run --rm -v /path/to/redmine-backups:/backups --volumes-from redmine busybox \ - cp -a /bitnami/redmine /backups/latest -``` - -### Restoring a backup - -Restoring a backup is as simple as mounting the backup as volumes in the containers. - -For the MariaDB database container: - -```diff - $ docker run -d --name mariadb \ - ... -- --volume /path/to/mariadb-persistence:/bitnami/mariadb \ -+ --volume /path/to/mariadb-backups/latest:/bitnami/mariadb \ - bitnami/mariadb:latest -``` - -For the Redmine container: - -```diff - $ docker run -d --name redmine \ - ... -- --volume /path/to/redmine-persistence:/bitnami/redmine \ -+ --volume /path/to/redmine-backups/latest:/bitnami/redmine \ - bitnami/redmine:latest -``` - ## Notable Changes ### 4.2.1-debian-10-r70