-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdocker-compose.yml
138 lines (128 loc) · 3.55 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
services:
inventory-management-service:
image: 'inventory-management-service:latest'
container_name: inventory-management-service
build:
context: .
dockerfile: Dockerfile
args:
NEW_RELIC_AGENT_JAR_PATH: ${NEW_RELIC_AGENT_JAR_PATH}
env_file:
- ./.env
depends_on:
- postgres
- zipkin
- prometheus
- redis
- kafka
environment:
- DB_HOST=postgres:5432 # Postgres container name and port
- ZIPKIN_HOST=zipkin # Zipkin container name
- REDIS_HOST=redis # Redis container name
- REDIS_PORT=${REDIS_DOCKER_PORT} # Redis port
- KAFKA_CONSUMER_BOOTSTRAP_SERVERS=kafka:9093 # Kafka container name and port
- KAFKA_PRODUCER_BOOTSTRAP_SERVERS=kafka:9093 # Kafka container name and port
- KAFKA_BROKERS=kafka:9093 # Kafka container name and port
ports:
- ${SPRING_LOCAL_PORT}:${SPRING_DOCKER_PORT}
profiles:
- ${INVENTORY_MANAGEMENT_SERVICE_START_PROFILE}
postgres:
image: debezium/example-postgres:latest
container_name: postgres
env_file:
- ./.env
ports:
- ${POSTGRES_LOCAL_PORT}:${POSTGRES_DOCKER_PORT}
environment:
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
- POSTGRES_USER=${POSTGRES_USER}
- POSTGRES_DB=${POSTGRES_DB}
volumes:
- db:/var/lib/postgres
zipkin:
image: openzipkin/zipkin
container_name: zipkin
ports:
- "9411:9411"
prometheus:
image: "prom/prometheus"
restart: always
ports:
- "9090:9090"
volumes:
- ./src/main/resources/prometheus/prometheus.yml:/etc/prometheus/prometheus.yml
command: --web.enable-lifecycle --config.file=/etc/prometheus/prometheus.yml
container_name: prometheus
grafana:
image: "grafana/grafana"
restart: always
ports:
- "3000:3000"
container_name: grafana
redis:
image: redis
restart: always
container_name: redis
ports:
- "6379:6379"
zookeeper:
image: "docker.io/bitnami/zookeeper:3"
restart: always
ports:
- "2181:2181"
volumes:
- "zookeeper_data:/bitnami"
environment:
- ALLOW_ANONYMOUS_LOGIN=yes
kafka:
image: "docker.io/bitnami/kafka:2-debian-10"
restart: always
ports:
- "9092:9092"
expose:
- "9093"
volumes:
- "kafka_data:/bitnami"
environment:
- KAFKA_CFG_ZOOKEEPER_CONNECT=zookeeper:2181
- ALLOW_PLAINTEXT_LISTENER=yes
- KAFKA_ADVERTISED_LISTENERS=INSIDE://kafka:9093,OUTSIDE://localhost:9092
- KAFKA_LISTENER_SECURITY_PROTOCOL_MAP=INSIDE:PLAINTEXT,OUTSIDE:PLAINTEXT
- KAFKA_LISTENERS=INSIDE://0.0.0.0:9093,OUTSIDE://0.0.0.0:9092
- KAFKA_INTER_BROKER_LISTENER_NAME=INSIDE
- KAFKA_ZOOKEEPER_CONNECT=zookeeper:2181
depends_on:
- zookeeper
kafka-ui:
image: provectuslabs/kafka-ui
restart: always
container_name: kafka-ui
ports:
- "9091:8080"
environment:
- KAFKA_CLUSTERS_0_NAME=local
- KAFKA_CLUSTERS_0_BOOTSTRAPSERVERS=kafka:9093
- KAFKA_CLUSTERS_0_ZOOKEEPER=localhost:2181
new-relic-infra-agent:
container_name: new-relic-infra-agent
image: newrelic/infrastructure:latest
cap_add:
- SYS_PTRACE
network_mode: host
pid: host
privileged: true
volumes:
- "/:/host:ro"
- "/var/run/docker.sock:/var/run/docker.sock"
restart: unless-stopped
environment:
NRIA_LICENSE_KEY: ${NEW_RELIC_LICENSE_KEY}
deploy:
replicas: ${NEW_RELIC_INFRA_AGENT_REPLICAS}
volumes:
zookeeper_data:
driver: local
kafka_data:
driver: local
db: