-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
55 lines (52 loc) · 1.25 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
services:
wb.dev:
build:
context: app
ports:
- "80:80"
volumes:
- "./app/src:/usr/src/public_html/src"
environment:
- valkey=wb.valkey.test
- search=wb.search.test:9200
- ADMIN_TOKEN=development
- CLIENT_NS=si_dev
- WEBHOOK_NS=wh_dev
- session_redis=wb.valkey.test
- XDEBUG_PORT=9003
- XDEBUG_HOST=host.docker.internal
wb.test:
build:
context: app
ports:
- "81:80"
volumes:
- "./app/src:/usr/src/public_html/src"
- "./app/nginx.conf:/etc/nginx/sites-enabled/default"
environment:
- valkey=wb.valkey.test
- search=wb.search.test:9200
- ADMIN_TOKEN=test
- CLIENT_NS=si_test
- WEBHOOK_NS=wh_test
- session_redis=wb.valkey.test
- XDEBUG_PORT=9004
- XDEBUG_HOST=host.docker.internal
wb.valkey.test:
build:
context: cache
ports:
- "6379:6379"
volumes:
- "./cache/src:/usr/src/public_html/src"
wb.search.test:
build:
context: search
ports:
- "9200:9200"
volumes:
- "./search/src:/usr/src/public_html/src"
environment:
- xpack.security.enabled=false
- discovery.type=single-node
- destructive_requires_name=false