-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
56 lines (51 loc) · 1021 Bytes
/
docker-compose.yaml
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
version: "3.1"
services:
server:
build:
context: .
dockerfile: ./docker/local.Dockerfile
volumes:
- .:/app
depends_on:
- memsql
command: sh -c './run.sh hot-serve'
networks:
- bitwyre
ports:
- "3000:3000"
memsql:
image: memsql/cluster-in-a-box:latest
hostname: memsql
ports:
- 3306:3306
- 8080:8080
environment:
LICENSE_KEY: ${SINGLESTORE_LICENSE_KEY}
START_AFTER_INIT: 'Y'
ROOT_PASSWORD: 'root'
restart: on-failure
networks:
- bitwyre
volumes:
- memsql-data:/var/lib/memsql
jaeger:
image: jaegertracing/all-in-one:1.7
container_name: jaeger
restart: on-failure
ports:
- 5775:5775/udp
- 6831:6831/udp
- 6832:6832/udp
- 5778:5778
- 16686:16686
- 14268:14268
- 9411:9411
environment:
- COLLECTOR_ZIPKIN_HTTP_PORT=9411
networks:
- bitwyre
volumes:
memsql-data:
networks:
bitwyre:
driver: bridge