-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathdocker-compose.override.yml.example
More file actions
72 lines (62 loc) · 2.85 KB
/
docker-compose.override.yml.example
File metadata and controls
72 lines (62 loc) · 2.85 KB
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
69
70
71
72
services:
nginx:
environment:
NGINX_PORT: "8000"
ports:
- "8000:80"
beam_tracker:
environment:
# see other ENV variables to override in Tracker's .env.example file
TRACKER_DEBUG: false
beam_segments:
environment:
# see other ENV variables to override in Segments' .env.example file
SEGMENTS_DEBUG: false
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"