forked from remp2020/remp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.override.yml.example
44 lines (35 loc) · 1.47 KB
/
docker-compose.override.yml.example
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
version: "3"
services:
nginx:
environment:
NGINX_PORT: "8000"
ports:
- "8000:80"
campaign:
environment:
XDEBUG_CONFIG: "remote_host=172.17.0.1" # find the ip of your host machine within docker network
# add these volumes only after initial installation (containers would override each others cache otherwise)
#volumes:
# - "/home/user/.cache/composer:/composer:rw"
# - "/home/user/.cache/yarn:/yarn:rw"
mailer:
environment:
XDEBUG_CONFIG: "remote_host=172.17.0.1" # find the ip of your host machine within docker network
# add these volumes only after initial installation (containers would override each others cache otherwise)
#volumes:
# - "/home/user/.cache/composer:/composer:rw"
# - "/home/user/.cache/yarn:/yarn:rw"
beam:
environment:
XDEBUG_CONFIG: "remote_host=172.17.0.1" # find the ip of your host machine within docker network
# add these volumes only after initial installation (containers would override each others cache otherwise)
#volumes:
# - "/home/user/.cache/composer:/composer:rw"
# - "/home/user/.cache/yarn:/yarn:rw"
sso:
environment:
XDEBUG_CONFIG: "remote_host=172.17.0.1" # find the ip of your host machine within docker network
# add these volumes only after initial installation (containers would override each others cache otherwise)
#volumes:
# - "/home/user/.cache/composer:/composer:rw"
# - "/home/user/.cache/yarn:/yarn:rw"