-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
65 lines (56 loc) · 1.04 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
version: '2'
services:
nginx:
build: ./containers/nginx/
links:
- php
ports:
- "60080:80"
volumes_from:
- php
nginx-dev:
build: ./containers/nginx-dev/
links:
- php-dev
ports:
- "50080:80"
volumes_from:
- php-dev
pg:
build: ./containers/pg/
ports:
- "55432:5432"
volumes:
- ./runtime/pg/data:/var/lib/postgresql/data
env_file: ./containers/pg/.env
php:
links:
- pg
build: ./containers/php/
volumes:
- ./app:/app/htdocs
- ./runtime/logs:/app/log
- ./mount:/app/mount
php-dev:
links:
- pg
# - php-deamons
build: ./containers/php-dev/
volumes:
- ./app:/app/htdocs
- ./runtime/logs:/app/log
- ./mount:/app/mount
# dependency containers
node:
build: ./containers/node/
volumes:
- ./app:/app/htdocs
ports:
- "3000:3000"
- "3001:3001"
# util containers
phpunit:
build: ./containers/phpunit/
volumes:
- ./app:/app/htdocs
- ./runtime/logs:/app/log