-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
50 lines (46 loc) · 942 Bytes
/
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
version: "3"
services:
ffmpeg:
entrypoint: /app/bin/snapz.sh
env_file: ./.env
image: linuxserver/ffmpeg
volumes:
- type: bind
source: ./
target: /app
- type: bind
source: $VIDEO_PATH
target: /app/videos
read_only: true
working_dir: /app
imagemagick:
entrypoint: /app/bin/thumbz.sh
env_file: ./.env
image: dpokidov/imagemagick
volumes:
- type: bind
source: ./
target: /app
working_dir: /app
pagez:
build:
context: .
dockerfile: Dockerfile.pagez
command: /app/bin/pagez.sh
env_file: ./.env
expose:
- 8000
ports:
- 8000:8000
volumes:
- type: bind
source: ./
target: /app
- type: bind
source: $VIDEO_PATH
target: /app/videos
read_only: true
working_dir: /app
loadz:
extends: pagez
command: /app/bin/loadz.sh