Redmine

Redmine - Flexible project management web application

3000
Default Port
2
Services
13.5/20
Complexity
Medium
Memory Usage
Configuration

Installation Command

blastdock init redmine

Template Overview

Everything you need to deploy Redmine with BlastDock

Quick Deploy

One command deployment

Secure

Production-ready security

Configurable

Customizable settings

Scalable

Ready to scale up

What's Included

Redmine
redmine:latest
Postgres
postgres:13
Categories
Database
Security Features
Password Protection
Resource Requirements
CPU: Medium, Memory: Medium , Storage Required

Quick Commands

blastdock init Initialize new project
blastdock deploy Deploy the application
blastdock status Check deployment status
blastdock logs View application logs

Quick Installation

Get Redmine up and running in minutes with our one-click installation.

BlastDock Installation

First, install BlastDock using pip (recommended):

Terminal
pip install blastdock

Then deploy Redmine with:

Terminal
blastdock init redmine

Interactive mode:

Terminal
blastdock init redmine -i

What's Included

Redmine
Container service
Postgres
Container service

BlastDock Commands

blastdock templates List available templates
blastdock status project Check deployment status
blastdock logs project View application logs
blastdock stop project Stop deployment

Configuration Options

Customize your Redmine installation with these configuration options.

2
Required Fields
0
Optional Fields
1
Auto-Generated Passwords

Port

Web interface port

port
Default: 3000
Required: Yes

Db Password

Database password

password
Default: ••••••••••••
Required: Yes
Security: Auto-generated

Docker Compose

Complete Docker Compose configuration for Redmine deployment.

2
Services
3
Volumes
1
Networks
1
Exposed Ports
docker-compose.yml
version: '3.8'

services:
  postgres:
    image: postgres:13
    container_name: {{ project_name }}_postgres
    restart: unless-stopped
    environment:
      0: POSTGRES_PASSWORD={{ db_password }}
      1: POSTGRES_USER=redmine
      2: POSTGRES_DB=redmine
    volumes:
      - /var/lib/postgresql/data
    networks:
      - redmine_network

  redmine:
    image: redmine:latest
    container_name: {{ project_name }}_redmine
    restart: unless-stopped
    depends_on:
      - postgres
    ports:
      - "3000"
    environment:
      0: REDMINE_DB_POSTGRES=postgres
      1: REDMINE_DB_USERNAME=redmine
      2: REDMINE_DB_PASSWORD={{ db_password }}
      3: REDMINE_DB_DATABASE=redmine
    volumes:
      - /usr/src/redmine/files
      - /usr/src/redmine/plugins
    networks:
      - redmine_network

volumes:
  postgres_data:
    driver: local

  redmine_files:
    driver: local

  redmine_plugins:
    driver: local

networks:
  redmine_network:
    driver: bridge