-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
49 lines (45 loc) · 1003 Bytes
/
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
# J2E Composition
version: "2.1"
services:
# Frontend
# /marketingui/
adminMarketingUI:
container_name: fe_admin_marketing_ui
image: "blablamove/fe-admin-marketing-ui"
ports:
- "4201:80"
restart: always
# /
clientUI:
container_name: fe_client_ui
image: "blablamove/fe-client-ui"
ports:
- "4202:80"
restart: always
# Backend
dashboardService:
container_name: be_dashboard_service
image: "blablamove/be-dashboard-service"
ports:
- "8080:8080"
restart: always
extra_hosts:
- "kafka:10.132.0.2"
depends_on:
influxdb:
condition: service_healthy
links:
- influxdb
# TSDB
influxdb:
image: influxdb
healthcheck:
test: "curl -sL -I localhost:8086/ping | grep \"204 No Content\""
interval: 3s
retries: 2
ports:
- 8086:8086
environment:
INFLUXDB_ADMIN_ENABLED: "true"
INFLUXDB_ADMIN_USER: "admin"
INFLUXDB_ADMIN_PASSWORD: "admin"