-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
57 lines (51 loc) · 1.01 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
56
57
version: '3'
services:
server:
command: go run main.go --debug server
build: .
image: orion_app
volumes:
- .:/opt/build
environment:
SERVICE_NAME: orion-server
DEV_STORAGE: s3
postgresql:
image: mdillon/postgis:11-alpine
environment:
- POSTGRES_USER=syncano
- POSTGRES_PASSWORD=syncano
- POSTGRES_DB=syncano
- PGDATA=/var/lib/postgresql/data/pgdata
volumes:
- ./db/:/docker-entrypoint-initdb.d/
ports:
- "5432"
redis:
image: redis:5-alpine
volumes:
- data-redis:/data
ports:
- "6379"
rabbitmq:
image: rabbitmq:3.8-alpine
volumes:
- data-rabbitmq:/data
ports:
- "5672"
- "15672"
jaeger:
image: jaegertracing/all-in-one:1.17
environment:
- COLLECTOR_ZIPKIN_HTTP_PORT=9411
ports:
- "5775"
- "6831"
- "6832"
- "5778"
- "16686:16686"
- "14268:14268"
- "14250"
- "9411:9411"
volumes:
data-rabbitmq:
data-redis: