Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Image for Redmine 5.1 #303

Closed
smap9 opened this issue Nov 6, 2023 · 3 comments
Closed

Image for Redmine 5.1 #303

smap9 opened this issue Nov 6, 2023 · 3 comments

Comments

@smap9
Copy link

smap9 commented Nov 6, 2023

Redmine 5.1 was released last week. https://www.redmine.org/news/142

Can you create an image for this version?

@LaurentGoderre
Copy link
Member

#304

@tianon tianon closed this as completed Nov 30, 2023
@achernyakevich-sc
Copy link

@tianon Just to be sure - is support for Redmine 5.1.x takes into account changes to database.yml that need to be applied to work correct with MySQL?

See https://www.redmine.org/projects/redmine/wiki/MySQL_configuration for more information.

@yosifkit
Copy link
Member

yosifkit commented Dec 1, 2023

The docker-entrypoint.sh is currently unchanged. Even if we changed it, it wouldn't affect users that upgrade from one version to another (since they already have a database.yml). I'd suggest setting transaction_isolation="READ-COMMITTED" on the MySQL server. So this should be a documentation change for the Docker Hub page.

Users can add it right into thier compose yaml:

version: '3.1'

services:

  redmine:
    image: redmine
    restart: always
    ports:
      - 8080:3000
    environment:
      REDMINE_DB_MYSQL: db
      REDMINE_DB_PASSWORD: example
      REDMINE_SECRET_KEY_BASE: supersecretkey

  db:
    image: mysql:5.7
    restart: always
#####
    command: --transaction_isolation=READ-COMMITTED
#####
    environment:
      MYSQL_ROOT_PASSWORD: example
      MYSQL_DATABASE: redmine

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants