-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
44 lines (40 loc) · 900 Bytes
/
docker-compose.yml
File metadata and controls
44 lines (40 loc) · 900 Bytes
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
version: '3.8'
services:
# Local RabbitMQ server
rabbitmq:
build: ./rabbitmqserver/
container_name: rabbitmq-container
image: rabbitmq:3.12-management
environment:
- RABBITMQ_DEFAULT_USER=guest
- RABBITMQ_DEFAULT_PASS=guest
healthcheck:
test: rabbitmq-diagnostics -q ping
interval: 30s
timeout: 30s
retries: 3
ports:
- 5672:5672
- 15672:15672
- 1883:1883
networks:
- shated_net
# InfluxDB
# influx_festival:
# image: influxdb:latest
# container_name: influx_festival
# ports:
# - "8086:8086"
# networks:
# - shated_net
# Telegraf
# telegraf_festival:
# image: telegraf:latest
# container_name: telegraf_festival
# volumes:
# - ./telegraf.conf:/etc/telegraf/telegraf.conf:ro
# networks:
# - shated_net
networks:
shated_net:
driver: bridge