-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathdocker-compose.override.yml
63 lines (57 loc) · 1.15 KB
/
docker-compose.override.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
version: '3.3'
services:
nodered:
volumes:
- shared:/filestorage
ftp:
image: faisalthaheem/open-lpr-ftp:main
restart: always
environment:
PRODUCTION: production
depends_on:
- broker
- mongodb
ports:
- 2121:2121
- 60000-60050:60000-60050
volumes:
- shared:/filestorage
platedetector:
image: faisalthaheem/open-lpr-plate-detection:main
restart: always
environment:
PRODUCTION: production
depends_on:
- broker
- mongodb
volumes:
- shared:/filestorage
ocr:
image: faisalthaheem/open-lpr-ocr:main
restart: always
environment:
PRODUCTION: production
depends_on:
- broker
- mongodb
volumes:
- shared:/filestorage
rest:
image: faisalthaheem/open-lpr-rest:main
restart: always
environment:
PRODUCTION: production
depends_on:
- broker
- mongodb
ports:
- 5000:5000
volumes:
- shared:/filestorage
volumes:
shared:
driver: local
driver_opts:
type: none
device: $PWD/filestorage
o: bind