forked from ActiveTK/MP4Recover
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
40 lines (37 loc) · 818 Bytes
/
docker-compose.yml
File metadata and controls
40 lines (37 loc) · 818 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
31
32
33
34
35
36
37
38
39
40
services:
mp4-repair:
build:
context: ./orchestrator
image: mp4-repair-orchestrator:latest
container_name: mp4-repair
restart: unless-stopped
ports:
- "8000:8000"
# Uncomment below to use GPU (NVIDIA Container Toolkit)
#
# deploy:
# resources:
# reservations:
# devices:
# - capabilities: ["gpu"]
#
volumes:
- ./data:/data
php-web:
build:
context: ./php
dockerfile: Dockerfile
container_name: php-web
restart: unless-stopped
# HTTP server port (default is 8080)
ports:
- "8080:80"
environment:
API_BASE: http://mp4-repair:8000
DATA_IN: /data/in
DATA_OUT: /data/out
PERMISSIVE_MODE: "1"
volumes:
- ./data:/data
depends_on:
- mp4-repair