-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
34 lines (33 loc) · 906 Bytes
/
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
version: '2.4'
services:
cb:
image: "couchbase:enterprise-6.0.1"
ports:
- 8091:8091
- 8092:8092
- 8093:8093
- 8094:8094
- 8095:8095
- 11210:11210
jaeger:
build: .
environment:
- COUCHBASE_USERNAME=Administrator
- COUCHBASE_PASSWORD=password
- COUCHBASE_BUCKET=default
- COUCHBASE_CONNSTRING=couchbase://cb
- COUCHBASE_AUTOSETUP=true
- COUCHBASE_N1QLFALLBACK=false
- COUCHBASE_USEANALYTICS=true
- GRPC_VERBOSITY=DEBUG
- GRPC_TRACE=all
ports:
- "5775:5775/udp"
- "6831:6831/udp"
- "6832:6832/udp"
- "5778:5778"
- "16686:16686"
- "14268:14268"
- "9411:9411"
depends_on:
- cb