forked from francescadag/NGSI-LDBrokerManager
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
47 lines (42 loc) · 889 Bytes
/
docker-compose.yml
File metadata and controls
47 lines (42 loc) · 889 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
45
46
47
version: "3.5"
services:
ngsi-broker:
image: interstat/ngsi-broker
build: .
container_name: "ngsi-broker"
ports:
- 8082:8082
environment:
- SERVER_DEBUG=false
- IDRA_BASE_PATH=http://host.docker.internal:8080
networks:
- ngsi-broker
orion:
image: fiware/orion-ld
hostname: orion
container_name: fiware-orion-ld
expose:
- "1026"
ports:
- "1026:1026"
depends_on:
- db-mongo-orion
command: -dbhost db-mongo-orion -logLevel DEBUG
networks:
- ngsi-broker
db-mongo-orion:
image: mongo:3.6
hostname: db-mongo-orion
container_name: db-mongo-orion
networks:
- default
command: --nojournal
volumes:
- db-mongo-orion:/data
networks:
- ngsi-broker
volumes:
db-mongo-orion: ~
networks:
ngsi-broker:
driver: bridge