-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
34 lines (29 loc) · 1.01 KB
/
Copy pathdocker-compose.yml
File metadata and controls
34 lines (29 loc) · 1.01 KB
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
# =============================================================
# UniPlateTracker Docker Compose File
# =============================================================
# To run UniPlateTracker using the official image
# =============================================================
version: '3.8'
services:
uniplatetracker:
image: ghcr.io/nothgm/uniplatetracker:main
container_name: uniplatetracker
restart: unless-stopped
ports:
# Next.js Application Port
- "3000:3000"
# Webhook Worker Port (must match WORKER_PORT in .env.local)
- "4000:4000"
# Loads all configuration from the .env.local file.
env_file:
- .env.local
# Mounts local volumes to ensure your video files are not lost.
volumes:
- uniplatetracker_videos:/opt/captures/final
- uniplatetracker_buffer:/opt/captures/buffer
# Defines the named volumes that will persist on your server.
volumes:
uniplatetracker_videos:
driver: local
uniplatetracker_buffer:
driver: local