OpenProject

OpenProject - Project management software

8080
Default Port
2
Services
19.0/20
Complexity
Medium
Memory Usage
Configuration

Installation Command

blastdock init openproject

Template Overview

Everything you need to deploy Openproject with BlastDock

Quick Deploy

One command deployment

Secure

Production-ready security

Configurable

Customizable settings

Scalable

Ready to scale up

What's Included

Openproject
openproject/community:latest
Postgres
postgres:13
Categories
Database
Security Features
Password Protection, Admin User
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 Openproject up and running in minutes with our one-click installation.

BlastDock Installation

First, install BlastDock using pip (recommended):

Terminal
pip install blastdock

Then deploy Openproject with:

Terminal
blastdock init openproject

Interactive mode:

Terminal
blastdock init openproject -i

What's Included

Openproject
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 Openproject installation with these configuration options.

6
Required Fields
0
Optional Fields
2
Auto-Generated Passwords

Port

Web interface port

port
Default: 8080
Required: Yes

Db Password

Database password

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

Admin Email

Admin email

string
Required: Yes

Admin Password

Admin password

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

Admin Firstname

Admin first name

string
Default: Admin
Required: Yes

Admin Lastname

Admin last name

string
Default: User
Required: Yes

Docker Compose

Complete Docker Compose configuration for Openproject 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=openproject
      2: POSTGRES_DB=openproject
    volumes:
      - /var/lib/postgresql/data
    networks:
      - openproject_network

  openproject:
    image: openproject/community:latest
    container_name: {{ project_name }}_openproject
    restart: unless-stopped
    depends_on:
      - postgres
    ports:
      - "80"
    environment:
      - DATABASE_URL=postgres: //openproject:{{ db_password }}@postgres/openproject
      0: OPENPROJECT_HOST__NAME=localhost
      1: OPENPROJECT_HTTPS=false
      2: OPENPROJECT_ADMIN__EMAIL={{ admin_email }}
      3: OPENPROJECT_ADMIN__PASSWORD={{ admin_password }}
      4: OPENPROJECT_ADMIN__FIRSTNAME={{ admin_firstname }}
      5: OPENPROJECT_ADMIN__LASTNAME={{ admin_lastname }}
    volumes:
      - /var/openproject/assets
      - /var/openproject/pgdata
    networks:
      - openproject_network

volumes:
  postgres_data:
    driver: local

  openproject_assets:
    driver: local

  openproject_pgdata:
    driver: local

networks:
  openproject_network:
    driver: bridge