forked from gregszalay/ocpp-csms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
58 lines (57 loc) · 1.62 KB
/
docker-compose.yml
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
version: '3'
services:
websocket-service:
image: gregszalay/websocket-service:v1.0
build: .
command: /app/websocket-service
volumes:
- ./credentials/PRIVATE.json:/tmp/keys/PRIVATE.json:ro
env_file:
- .env
environment:
- SERVICE_APP_NAME=device-service
# LOG_LEVEL Panic, Fatal, Error, Warn, Info, Debug, Trace
- LOG_LEVEL=Info
- DEVICE_SERVICE_HOST=device-service
- DEVICE_SERVICE_PORT=5000
- DEVICE_SERVICE_GET_STATION_URL=/chargingstations/station
ports:
- "3000:3000"
device-service:
image: gregszalay/device-service:v1.0
build: .
command: /app/device-service
volumes:
- ./credentials/PRIVATE.json:/tmp/keys/PRIVATE.json:ro
env_file:
- .env
environment:
- SERVICE_APP_NAME=websocket-service
# LOG_LEVEL Panic, Fatal, Error, Warn, Info, Debug, Trace
- LOG_LEVEL=Info
ports:
- "5000:5000"
user-service:
image: gregszalay/user-service:v1.0
build: .
command: /app/user-service
volumes:
- ./credentials/PRIVATE.json:/tmp/keys/PRIVATE.json:ro
env_file:
- .env
environment:
- SERVICE_APP_NAME=user-service
# LOG_LEVEL Panic, Fatal, Error, Warn, Info, Debug, Trace
- LOG_LEVEL=Info
transaction-service:
image: gregszalay/transaction-service:v1.0
build: .
command: /app/transaction-service
volumes:
- ./credentials/PRIVATE.json:/tmp/keys/PRIVATE.json:ro
env_file:
- .env
environment:
- SERVICE_APP_NAME=transaction-service
# LOG_LEVEL Panic, Fatal, Error, Warn, Info, Debug, Trace
- LOG_LEVEL=Info