Drupal

Drupal - Content management framework

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

Installation Command

blastdock init drupal

Template Overview

Everything you need to deploy Drupal with BlastDock

Quick Deploy

One command deployment

Secure

Production-ready security

Configurable

Customizable settings

Scalable

Ready to scale up

What's Included

Drupal
drupal:{{ drupal_version }}
Postgresql
postgres:14-alpine
Categories
CMS
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 Drupal up and running in minutes with our one-click installation.

BlastDock Installation

First, install BlastDock using pip (recommended):

Terminal
pip install blastdock

Then deploy Drupal with:

Terminal
blastdock init drupal

Interactive mode:

Terminal
blastdock init drupal -i

What's Included

Drupal
Container service
Postgresql
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 Drupal installation with these configuration options.

5
Required Fields
0
Optional Fields
1
Auto-Generated Passwords

Http Port

HTTP port

port
Default: 8080
Required: Yes

Drupal Version

Drupal version

string
Default: latest
Required: Yes

Postgres Password

PostgreSQL password

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

Postgres Db

Database name

string
Default: drupal
Required: Yes

Postgres User

Database user

string
Default: drupal
Required: Yes

Docker Compose

Complete Docker Compose configuration for Drupal deployment.

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

services:
  drupal:
    image: drupal:{{ drupal_version }}
    container_name: {{ project_name }}_drupal
    restart: unless-stopped
    depends_on:
      - postgresql
    ports:
      - "80"
    environment:
      0: POSTGRES_PASSWORD={{ postgres_password }}
      1: POSTGRES_USER={{ postgres_user }}
      2: POSTGRES_DB={{ postgres_db }}
    volumes:
      - /var/www/html/modules
      - /var/www/html/profiles
      - /var/www/html/themes
      - /var/www/html/sites
    networks:
      - drupal_network

  postgresql:
    image: postgres:14-alpine
    container_name: {{ project_name }}_postgresql
    restart: unless-stopped
    environment:
      0: POSTGRES_PASSWORD={{ postgres_password }}
      1: POSTGRES_USER={{ postgres_user }}
      2: POSTGRES_DB={{ postgres_db }}
    volumes:
      - /var/lib/postgresql/data
    networks:
      - drupal_network

volumes:
  drupal_modules:
    driver: local

  drupal_profiles:
    driver: local

  drupal_themes:
    driver: local

  drupal_sites:
    driver: local

  postgres_data:
    driver: local

networks:
  drupal_network:
    driver: bridge