Skip to content

Instantly share code, notes, and snippets.

@tinder-maxwellelliott
Last active May 7, 2020 16:12
Show Gist options
  • Save tinder-maxwellelliott/e97167acee4fa05bda655109ba0625d5 to your computer and use it in GitHub Desktop.
Save tinder-maxwellelliott/e97167acee4fa05bda655109ba0625d5 to your computer and use it in GitHub Desktop.
version: '2'
services:
mariadb:
image: 'bitnami/mariadb:10.3'
environment:
- MYSQL_ROOT_PASSWORD=maria_root_password
- MARIADB_ROOT_PASSWORD=maria_root_password
volumes:
- 'mariadb_data:/bitnami'
restart: unless-stopped
phabricator:
image: 'bitnami/phabricator:latest'
environment:
- MARIADB_PASSWORD=maria_root_password
- PHABRICATOR_ENABLE_GIT_SSH_REPOSITORY=yes
- PHP_MEMORY_LIMIT=512M
ports:
- '2200:22'
- '80:80'
- '443:443'
volumes:
- 'phabricator_data:/bitnami'
- './certs:/certs'
depends_on:
- mariadb
restart: unless-stopped
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