forked from tenforce/docker-unified-views
-
Notifications
You must be signed in to change notification settings - Fork 2
/
docker-compose.yml
53 lines (52 loc) · 1.27 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
version: '2'
services:
uvadddpus:
image: semanticwebcompany/uv-add-dpus:latest
volumes_from:
- uvshared
links:
- uvfrontend:frontend
uvfrontend:
image: semanticwebcompany/unifiedviews-frontend:latest
restart: always
ports:
- "8088:8080"
# volumes:
## - /etc/timezone:/etc/timezone:ro
## - /etc/localtime:/etc/localtime:ro
volumes_from:
- uvshared
links:
- uvdb:mysql
- uvbackend:uvbackend
uvbackend:
image: semanticwebcompany/unifiedviews-backend:latest
restart: always
ports:
- "8076:8066"
volumes:
- ./data/unified-views/tmp:/tmp
# - /etc/timezone:/etc/timezone:ro
# - /etc/localtime:/etc/localtime:ro
volumes_from:
- uvshared
links:
- uvdb:mysql
uvdb:
image: semanticwebcompany/uv-mariadb:latest
restart: always
environment:
MYSQL_ROOT_PASSWORD: "UV"
MYSQL_PASSWORD: "UV"
volumes:
- ./data/mysql:/var/lib/mysql
# - /etc/timezone:/etc/timezone:ro
# - /etc/localtime:/etc/localtime:ro
uvshared:
image: semanticwebcompany/unifiedviews-shared:latest
environment:
UV_DATABASE_SQL_PASSWORD: "UV"
volumes:
- ./data/unified-views/logs:/unified-views/logs
- ./data/unified-views/config:/unified-views/config
- ./data/unified-views/backend:/unified-views/backend