-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.override.yml.dist
52 lines (44 loc) · 1.3 KB
/
docker-compose.override.yml.dist
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
version: '3.7'
# Define services
services:
### Workspace Container ###############################
workspace:
volumes:
- ./src:/home/app/src:delegated
### Database Container #################################
database:
ports:
- 3396:3306
### Redis Container #########################################
redis:
ports:
- 6399:6379
### Nginx Container ###############################
nginx:
volumes:
- ./src/vendor:/var/www/html/vendor:cached
- ./src/node_modules:/var/www/html/node_modules:cached
- lldockerpet-appcode-native-osx-sync:/var/www/html:nocopy
ports:
- 8090:80
- 4493:443
### PHPFPM Container ###############################
phpfpm:
volumes:
- ./src/vendor:/var/www/html/vendor:cached
- ./src/node_modules:/var/www/html/node_modules:cached
- lldockerpet-appcode-native-osx-sync:/var/www/html:nocopy
ports:
- 9000
### PHP Worker Container ###############################
worker:
volumes:
- ./src/vendor:/var/www/html/vendor:cached
- ./src/node_modules:/var/www/html/node_modules:cached
- lldockerpet-appcode-native-osx-sync:/var/www/html:nocopy
ports:
- 9006:9001
# that the important thing
volumes:
lldockerpet-appcode-native-osx-sync:
external: true