-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.hosted.yml
More file actions
50 lines (47 loc) · 1.09 KB
/
docker-compose.hosted.yml
File metadata and controls
50 lines (47 loc) · 1.09 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
version: '3.4'
services:
routehubclient-rest:
image: routehub-client-hub:latest
build:
context: .
dockerfile: ./Dockerfile
expose:
- 8080
environment:
- HOSTING_MODE=REST
- REDIS_HOST=rotehub-redis
- REDIS_PORT=6379
- REDIS_PASSWORD=
- REDIS_DB=0
# Deployer Informations
- ORGANIZATION_ID=${ORGANIZATION_ID}
- OWNER_ID=${OWNER_ID}
- PLATFORM_ID=${PLATFORM_ID}
- PLATFORM_SECRET=${PLATFORM_SECRET}
# Application Detail Configuration
- SEED=${APP_SEED}
- Name=${APP_NAME}
- Version=${APP_VERSION}
restart: always
depends_on:
- rotehub-redis
- routehubclient-mqtt
routehubclient-mqtt:
image: routehub-client-hub:latest
build:
context: .
dockerfile: ./Dockerfile
expose:
- 1883
environment:
- HOSTING_MODE=MQTT
- REDIS_HOST=rotehub-redis
- REDIS_PORT=6379
- REDIS_PASSWORD=
- REDIS_DB=0
depends_on:
- rotehub-redis
rotehub-redis:
image: eqalpha/keydb
expose:
- 6379