-
Notifications
You must be signed in to change notification settings - Fork 39
/
docker-compose.override.yml.example
62 lines (54 loc) · 2.58 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
services:
nginx:
environment:
NGINX_PORT: "8000"
ports:
- "8000:80"
campaign:
environment:
XDEBUG_CONFIG: "client_host=host.docker.internal"
PHP_IDE_CONFIG: "serverName=campaign.remp.press"
extra_hosts:
- "host.docker.internal:host-gateway" # Linux Docker engine doesn't have this host by default
# Add these volumes only after initial installation (containers would otherwise override each other's cache).
# Also make sure, the host machine folders already exist; otherwise Docker would create them with root owner,
# and you might encounter permission issues.
#volumes:
# - "/home/user/.cache/composer:/composer:rw"
# - "/home/user/.cache/yarn:/yarn:rw"
mailer:
environment:
XDEBUG_CONFIG: "client_host=host.docker.internal"
PHP_IDE_CONFIG: "serverName=mailer.remp.press"
extra_hosts:
- "host.docker.internal:host-gateway" # Linux Docker engine doesn't have this host by default
# Add these volumes only after initial installation (containers would otherwise override each other's cache).
# Also make sure, the host machine folders already exist; otherwise Docker would create them with root owner,
# and you might encounter permission issues.
#volumes:
# - "/home/user/.cache/composer:/composer:rw"
# - "/home/user/.cache/yarn:/yarn:rw"
beam:
environment:
XDEBUG_CONFIG: "client_host=host.docker.internal"
PHP_IDE_CONFIG: "serverName=beam.remp.press"
extra_hosts:
- "host.docker.internal:host-gateway" # Linux Docker engine doesn't have this host by default
# Add these volumes only after initial installation (containers would otherwise override each other's cache).
# Also make sure, the host machine folders already exist; otherwise Docker would create them with root owner,
# and you might encounter permission issues.
#volumes:
# - "/home/user/.cache/composer:/composer:rw"
# - "/home/user/.cache/yarn:/yarn:rw"
sso:
environment:
XDEBUG_CONFIG: "client_host=host.docker.internal"
PHP_IDE_CONFIG: "serverName=sso.remp.press"
extra_hosts:
- "host.docker.internal:host-gateway" # Linux Docker engine doesn't have this host by default
# Add these volumes only after initial installation (containers would otherwise override each other's cache).
# Also make sure, the host machine folders already exist; otherwise Docker would create them with root owner,
# and you might encounter permission issues.
#volumes:
# - "/home/user/.cache/composer:/composer:rw"
# - "/home/user/.cache/yarn:/yarn:rw"