-
Notifications
You must be signed in to change notification settings - Fork 3
/
docker-compose.yml
65 lines (61 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
54
55
56
57
58
59
60
61
62
63
64
version: '3.7'
volumes:
neo-db:
networks:
time-tracker:
services:
db:
image: neo4j:4.2.13
restart: always
environment:
NEO4J_AUTH: 'neo4j/docker'
ports:
- '7687:7687'
- '7474:7474'
volumes:
- neo-db:/data
networks:
- time-tracker
ui:
image: ua-timetracker/time-tracker-ui:${TIMETRACKER_VERSION}
restart: always
environment:
ADMIN_BACKEND_URL: http://admin:20081
TIME_TRACKER_BACKEND_URL: http://tracker:20080
ports:
- '6500:80'
networks:
- time-tracker
admin:
depends_on:
- db
image: ua-timetracker/administration:${TIMETRACKER_VERSION}
init: true
restart: always
environment:
ORG_NEO4J_DRIVER_URI: bolt://db:7687
ports:
- '20081:20081'
networks:
- time-tracker
tracker:
depends_on:
- db
image: ua-timetracker/time-tracker:${TIMETRACKER_VERSION}
init: true
restart: always
environment:
ORG_NEO4J_DRIVER_URI: bolt://db:7687
ports:
- '20080:20080'
networks:
- time-tracker
worker:
depends_on:
- db
image: ua-timetracker/worker:${TIMETRACKER_VERSION}
restart: always
environment:
SPRING_DATA_NEO4J_URI: bolt://db:7687
networks:
- time-tracker