forked from michaelmcandrew/civicrm-buildkit-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
58 lines (55 loc) · 1.14 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
49
50
51
52
53
54
55
56
57
58
version: "3.6"
services:
civicrm:
image: michaelmcandrew/civicrm-buildkit
hostname: civicrm
environment:
TERM: xterm-color
APACHE_RUN_USER: buildkit
links:
- mysql
ports:
- "7979:7979"
volumes:
- buildkit:/buildkit
- ./build:/buildkit/build
- ./extra:/extra
- amp:/buildkit/.amp
- bower-cache:/buildkit/.cache/bower
- composer-cache:/buildkit/.composer
- drush-cache:/buildkit/.drush
- npm-cache:/buildkit/.npm
- git-cache:/buildkit/app/tmp/git-cache
restart: unless-stopped
mysql:
image: mysql:5.7
environment:
MYSQL_ROOT_PASSWORD: buildkit
volumes:
- mysql:/var/lib/mysql
restart: unless-stopped
phpmyadmin:
image: phpmyadmin/phpmyadmin
ports:
- "8081:80"
links:
- mysql
environment:
PMA_HOST: mysql
PMA_USER: root
PMA_PASSWORD: buildkit
restart: unless-stopped
maildev:
image: djfarrelly/maildev
ports:
- "8082:80"
restart: unless-stopped
volumes:
amp:
buildkit:
bower-cache:
composer-cache:
drush-cache:
git-cache:
npm-cache:
mysql: