Created
March 17, 2018 22:04
-
-
Save allixsenos/ccca70ba04c0df40017e0ffc0c581f15 to your computer and use it in GitHub Desktop.
One click Phabricator install using docker
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' | |
environment: | |
PHABRICATOR_HOST: phabricator.lvh.me # resolves to 127.0.0.1, Phabricator needs a hostname | |
# PHABRICATOR_USERNAME: username | |
# PHABRICATOR_PASSWORD: password | |
# PHABRICATOR_EMAIL: email | |
# PHABRICATOR_FIRSTNAME: Joe | |
# PHABRICATOR_LASTNAME: User | |
# https://github.com/bitnami/bitnami-docker-phabricator#environment-variables | |
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