Created
July 13, 2019 13:28
-
-
Save englandbaron/2717b0068403856c8f8dd3cbd23675fb to your computer and use it in GitHub Desktop.
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:10.3' | |
environment: | |
- ALLOW_EMPTY_PASSWORD=yes | |
- MARIADB_EXTRA_FLAGS=--local-infile=0 | |
volumes: | |
- ${PWD}/mariadb_data:/bitnami | |
phabricator: | |
image: 'bitnami/phabricator:2019' | |
ports: | |
- '80:80' | |
- '443:443' | |
volumes: | |
- ${PWD}/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