-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathdocker-compose-dev.yaml
More file actions
30 lines (30 loc) · 911 Bytes
/
docker-compose-dev.yaml
File metadata and controls
30 lines (30 loc) · 911 Bytes
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
version: "3.9"
services:
plate-minder:
container_name: plate-minder
restart: unless-stopped
image: sclaflin/plate-minder:latest
build:
context: .
dockerfile: Dockerfile
volumes:
# Set's the docker container to the host container local time
- /etc/localtime:/etc/localtime:ro
- ./data:/app/data
- ./config.yaml:/app/config.yaml
# For Intel related hardware acceleration, the container needs the same
# group id as /dev/dri/renderD128.
user: 1000:107
devices:
# For Intel related hardware acceleration
- /dev/dri/renderD128
open-alpr-http-wrapper:
container_name: open-alpr-http-wrapper
restart: unless-stopped
image: sclaflin/open-alpr-http-wrapper:latest
plate-minder-web:
container_name: plate-minder-web
image: sclaflin/plate-minder-web:latest
restart: unless-stopped
ports:
- 8081:80