-
Notifications
You must be signed in to change notification settings - Fork 2
/
docker-compose.yml
48 lines (43 loc) · 1.01 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
version: '2'
volumes:
phabricator-storage:
phabricator-repository:
phabricator-mariadb:
networks:
phabricator:
services:
phabricator-mariadb:
container_name: phabricator-mariadb
image: veeenex/phabricator-mariadb
volumes:
- phabricator-mariadb:/var/lib/mysql
environment:
MYSQL_ROOT_PASSWORD: phabricator
MYSQL_USER: phabricator
MYSQL_PASSWORD: phabricator
networks:
- phabricator
phabricator:
container_name: phabricator
image: veeenex/phabricator
volumes:
- phabricator-storage:/var/storage
- phabricator-repository:/var/repo
ports:
- 2222:2222
- 22280:22280
depends_on:
- phabricator-mariadb
networks:
- phabricator
environment:
MYSQL_HOST: "phabricator-mariadb"
phabricator-webserver:
container_name: phabricator-webserver
image: veeenex/phabricator-webserver
volumes_from:
- phabricator
networks:
- phabricator
environment:
VIRTUAL_HOST: "phabricator.dev"