Redmine - Flexible project management web application
Everything you need to deploy Redmine with BlastDock
One command deployment
Production-ready security
Customizable settings
Ready to scale up
blastdock init
Initialize new project
blastdock deploy
Deploy the application
blastdock status
Check deployment status
blastdock logs
View application logs
Get Redmine up and running in minutes with our one-click installation.
First, install BlastDock using pip (recommended):
pip install blastdock
Then deploy Redmine with:
blastdock init redmine
Interactive mode:
blastdock init redmine -i
blastdock templates
List available templates
blastdock status project
Check deployment status
blastdock logs project
View application logs
blastdock stop project
Stop deployment
Customize your Redmine installation with these configuration options.
Web interface port
Database password
Complete Docker Compose configuration for Redmine deployment.
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