-
Notifications
You must be signed in to change notification settings - Fork 9
/
docker-compose.yml
68 lines (60 loc) · 1.18 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
59
60
61
62
63
64
65
66
67
68
version: "3"
services:
apache:
build: apache
env_file: docker-env
depends_on:
- php
ports:
- "443:443"
volumes:
- ~/www:/var/www/html:rw,delegated
tty: true
blackfire:
image: blackfire/blackfire:latest
env_file: docker-env
depends_on:
- apache
- php
maildev:
image: maildev/maildev
environment:
MAILDEV_SMTP_PORT: 25
depends_on:
- apache
ports:
- "1080:1080"
mongo:
image: mongo:3.6
env_file: docker-env
ports:
- "27017:27017"
volumes:
- mongo:/data/db
tty: true
mysql:
build: mysql
env_file: docker-env
ports:
- "3306:3306"
volumes:
- mysql:/var/lib/mysql
- ./mysql/conf.d/custom.cnf:/etc/mysql/conf.d/custom.cnf:ro
tty: true
php:
build: php
env_file: docker-env
environment:
- SSH_AUTH_SOCK=/run/host-services/ssh-auth.sock
volumes:
- ~/www:/var/www/html:rw,delegated
# SSH socket
- /run/host-services/ssh-auth.sock:/run/host-services/ssh-auth.sock
tty: true
redis:
image: redis:6-alpine
env_file: docker-env
tty: true
volumes:
mongo: {}
mysql: {}