Phabricator - Software development platform
Everything you need to deploy Phabricator 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 Phabricator up and running in minutes with our one-click installation.
First, install BlastDock using pip (recommended):
pip install blastdock
Then deploy Phabricator with:
blastdock init phabricator
Interactive mode:
blastdock init phabricator -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 Phabricator installation with these configuration options.
Web interface port
MySQL password
Base URI
Complete Docker Compose configuration for Phabricator deployment.
version: '3.8'
services:
mysql:
image: mysql:5.7
container_name: {{ project_name }}_mysql
restart: unless-stopped
environment:
0: MYSQL_ROOT_PASSWORD={{ mysql_password }}
volumes:
- /var/lib/mysql
networks:
- phabricator_network
phabricator:
image: redpointgames/phabricator:latest
container_name: {{ project_name }}_phabricator
restart: unless-stopped
depends_on:
- mysql
ports:
- "80"
environment:
0: MYSQL_HOST=mysql
1: MYSQL_USER=root
2: MYSQL_PASS={{ mysql_password }}
3: PHABRICATOR_URI={{ base_uri }}
4: PHABRICATOR_CDN_URI={{ base_uri }}
volumes:
- /srv/phabricator
networks:
- phabricator_network
volumes:
mysql_data:
driver: local
phabricator_data:
driver: local
networks:
phabricator_network:
driver: bridge