docker-redmine icon indicating copy to clipboard operation
docker-redmine copied to clipboard

ARM support for Docker image

Open ahanoff opened this issue 1 year ago • 2 comments

hi @sameersbn,

may I check if it's possible to add support for ARM platform? I'm tryint to run it on my Mac M1 and getting this error:

no matching manifest for linux/arm64/v8 in the manifest list entries

Below is docker-compose.yml used:

version: '2'

networks:
  redmine-net:
    driver: bridge

services:
  db:
    image: mariadb:10.5.19
    restart: always
    environment:
      MARIADB_ROOT_PASSWORD: password
      MARIADB_USER: redmine
    networks:
      - redmine-net
  redmine:
    image: sameersbn/redmine:5.0.5
    restart: always
    ports:
      - 8080:8080
    networks:
      - redmine-net
    volumes:
      - .redmine:/home/redmine/data
    env_file:
      - redmine.config

ahanoff avatar Mar 27 '23 19:03 ahanoff

Its probably possible, someone would just need to figure out and test the changes to the github build scripts. Pull requests are welcome

jcormier avatar Mar 28 '23 16:03 jcormier

arm support would be great :-)

yennor avatar Aug 12 '23 12:08 yennor