forked from CampusIoT/loraserver-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
71 lines (59 loc) · 1.49 KB
/
docker-compose.yml
File metadata and controls
71 lines (59 loc) · 1.49 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# Copyright (C) CampusIoT, - All Rights Reserved
# Written by CampusIoT Dev Team, 2016-2018
version: "2"
services:
loraserver:
image: loraserver/loraserver:2
volumes:
- ./configuration/loraserver:/etc/loraserver
appserver:
image: loraserver/lora-app-server:2
ports:
- 443:8080
volumes:
- ./configuration/lora-app-server:/etc/lora-app-server
gatewaybridge:
image: loraserver/lora-gateway-bridge:2
ports:
- 1700:1700/udp
volumes:
- ./configuration/lora-gateway-bridge:/etc/lora-gateway-bridge
geoserver:
image: loraserver/lora-geo-server:2
volumes:
- ./configuration/lora-geo-server:/etc/lora-geo-server
postgresql:
image: postgres:9.6-alpine
volumes:
- ./configuration/postgresql/initdb:/docker-entrypoint-initdb.d
- ./data/postgresql:/var/lib/postgresql/data
redis:
image: redis:4-alpine
volumes:
- ./data/redis:/data
mosquitto:
extends:
file: mosquitto.yml
service: mosquitto
postgres-backup-ns:
extends:
file: pgbackup.yml
service: postgres-backup-ns
links:
- postgresql:db # Maps postgres as "db"
postgres-backup-as:
extends:
file: pgbackup.yml
service: postgres-backup-as
links:
- postgresql:db # Maps postgres as "db"
mqtt-logger:
extends:
file: mqtt-logger.yml
service: mqtt-logger
links:
- mosquitto:mosquitto
influxdb:
extends:
file: influxdb.yml
service: influxdb