forked from chirpstack/chirpstack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
57 lines (52 loc) · 1.34 KB
/
docker-compose.yml
File metadata and controls
57 lines (52 loc) · 1.34 KB
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
services:
chirpstack:
build:
context: .
dockerfile: Dockerfile-devel
volumes:
- ./:/chirpstack
depends_on:
- postgres
- redis
- mosquitto
- rabbitmq
- kafka
environment:
- DATABASE_URL=postgres://chirpstack_test:chirpstack_test@postgres/chirpstack_test?sslmode=disable
- REDIS_HOST=redis
- POSTGRESQL_HOST=postgres
- MQTT_BROKER_HOST=mosquitto
- TEST_POSTGRESQL_DSN=postgres://chirpstack_test:chirpstack_test@postgres/chirpstack_test?sslmode=disable
- TEST_REDIS_URL=redis://redis/1
- TEST_MOSQUITTO_SERVER=tcp://mosquitto:1883/
- TEST_KAFKA_BROKER=kafka:9092
- TEST_AMQP_URL=amqp://guest:guest@rabbitmq:5672
ports:
- "8080:8080"
postgres:
image: postgres:18-alpine
volumes:
- ./.docker-compose/postgresql/initdb:/docker-entrypoint-initdb.d
environment:
- POSTGRES_HOST_AUTH_METHOD=trust
ports:
- "5432:5432"
redis:
image: redis:8-alpine
ports:
- "6379:6379"
mosquitto:
volumes:
- ./.docker-compose/mosquitto/config/:/mosquitto/config/
image: eclipse-mosquitto:2
ports:
- "1883:1883"
rabbitmq:
image: rabbitmq:4-management-alpine
ports:
- "15672:15672"
- "5672:5672"
kafka:
image: 'apache/kafka:4.1.0'
ports:
- "9092:9092"