Skip to content

Instantly share code, notes, and snippets.

@lcube45
Created January 18, 2019 13:12
Show Gist options
  • Save lcube45/2b77611bf1a8f25b3ee4d5f4bd514828 to your computer and use it in GitHub Desktop.
Save lcube45/2b77611bf1a8f25b3ee4d5f4bd514828 to your computer and use it in GitHub Desktop.
phabricator docker compose
version: '2'
services:
mariadb:
image: 'bitnami/mariadb:latest'
environment:
- ALLOW_EMPTY_PASSWORD=yes
volumes:
- 'mariadb_data:/bitnami'
phabricator:
image: 'bitnami/phabricator:latest'
labels:
kompose.service.type: nodeport
ports:
- '80:80'
- '443:443'
volumes:
- 'phabricator_data:/bitnami'
depends_on:
- mariadb
volumes:
mariadb_data:
driver: local
phabricator_data:
driver: local
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment