This repo is the docker image for redmine asap suite which contains
- Redmine core (6.1.3)
- Redmine asap theme (2.4.1)
- Redmine asap user features (1.1.0)
git clone https://github.com/tantic/redmine_asap_docker.git
cd redmine_asap_docker
git submodule update --init --recursive --remote
cp .env.example .env
Change variables if necessary
# REDMINE
REDMINE_VERSION=6.1.3
# .tar.gz from https://redmine.org/projects/redmine/wiki/Download
REDMINE_DOWNLOAD_SHA256=61db3008c7fd18a3afc559ed656fd38fdf8df8220ac69598b319095183190b7a
REDMINE_PLUGINS_MIGRATE=true
REDMINE_PORT=3000
docker compose up -d
Go to the url http://localhost:3000
Adapt the port number to the one set in the .env file
By default Redmine is in public mode (no authentication) which is not supported yet by the plugins.
First, you need to configure private mode. Go to the url http://localhost:3000/admin Enter default login for admin i.e. admin/admin Change password Go to administration > Configuration > Authentication > Authentication required = Yes
You can then choose login wallpaper and test other pages
To update plugin, just use these commands
docker compose down
git submodule update --remote
docker compose up -d