-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose-infra.yml
81 lines (73 loc) · 1.93 KB
/
docker-compose-infra.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
version: "3.7"
services:
##### MongoDB #####
# mongodb:
# container_name: mongo_service
# image: mongo:4.4
# environment:
# - MONGO_INITDB_ROOT_USERNAME=admin
# - MONGO_INITDB_ROOT_PASSWORD=admin
# - MONGO_INITDB_DATABASE=contosocrafts
# volumes:
# - ./productdata/products.json:/data/products.json
# - ./productdata/populate.sh:/docker-entrypoint-initdb.d/populate.sh
# - ./contoso_tmp/mongo/data/db:/data/db
# ports:
# - "27017:27017"
##### Rabbitmq #####
# rabbitmq:
# image: "rabbitmq:3.9-management"
# container_name: "rabbitmq_server"
# hostname: "rabbitmq_server"
# environment:
# - RABBITMQ_DEFAULT_USER=guest
# - RABBITMQ_DEFAULT_PASS=guest
# ports:
# - 5672:5672
# - 15672:15672
##### Redis #####
redis:
container_name: "redis_service"
image: "redis:6.2-alpine"
command: ["redis-server", "/usr/local/etc/redis/redis.conf"]
ports:
- "6379:6379"
volumes:
- ./redis.conf:/usr/local/etc/redis/redis.conf
##### Zipkin #####
zipkin:
container_name: "zipkin_service"
image: "openzipkin/zipkin:2.23.2"
ports:
- 9411:9411
rabbit:
image: masstransit/rabbitmq:latest
ports:
- "5672:5672"
- "15672:15672"
##### fluent-bit #####
# fluent-bit:
# image: fluent/fluent-bit:1.7.2
# container_name: "fluentbit_service"
# hostname: "fluentbit_service"
# depends_on:
# - seq-input-gelf
# ports:
# - 24224:24224 # Forward input plugin
# - 24220:24220 # built-in HTTP Server
# volumes:
# - "./fluent-bit.conf:/fluent-bit/etc/fluent-bit.conf:ro"
##### Seq #####
# seq:
# container_name: "seq_service"
# image: datalust/seq:2021.2
# environment:
# - ACCEPT_EULA=Y
# volumes:
# - ./contoso_tmp/seq/data:/data
# ports:
# - "8191:80"
networks:
default:
name: dapr_network
driver: bridge