-
Notifications
You must be signed in to change notification settings - Fork 0
/
compose.yaml
39 lines (37 loc) · 1.02 KB
/
compose.yaml
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
version: '3.1'
services:
mongo:
image: mongo
restart: always
ports:
- 27017:27017
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: password
mongo-express:
image: mongo-express
restart: always
ports:
- 8081:8081
environment:
ME_CONFIG_MONGODB_ADMINUSERNAME: root
ME_CONFIG_MONGODB_ADMINPASSWORD: password
ME_CONFIG_MONGODB_URL: mongodb://root:password@mongo:27017/
ME_CONFIG_BASICAUTH_USERNAME: admin
ME_CONFIG_BASICAUTH_PASSWORD: password
state-manager:
build:
context: .
dockerfile: ./docker/backend/state-manager/Dockerfile
ports:
- 8080:8080
environment:
- MQTT_BROKER_ADDR=tls://p390e24a.ala.us-east-1.emqxsl.com:8883
- MQTT_USERNAME=test
- MQTT_PASSWORD=password
- MQTT_CLIENT_ID=emqx_cloudd1e033
- MONGODB_URI=mongodb://root:password@localhost:27017/
auto-operation:
build:
context: .
dockerfile: ./docker/backend/auto-operation/Dockerfile