Drupal - Content management framework
Everything you need to deploy Drupal 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 Drupal up and running in minutes with our one-click installation.
First, install BlastDock using pip (recommended):
pip install blastdock
Then deploy Drupal with:
blastdock init drupal
Interactive mode:
blastdock init drupal -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 Drupal installation with these configuration options.
HTTP port
Drupal version
PostgreSQL password
Database name
Database user
Complete Docker Compose configuration for Drupal deployment.
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