-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
36 lines (31 loc) · 914 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
36 lines (31 loc) · 914 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
services:
zoomy:
image: ${RECORDER_IMAGE:-zoomy-zoomy:latest}
build:
context: .
dockerfile: app/Dockerfile
container_name: zoomy
restart: unless-stopped
env_file:
- .env
entrypoint:
- /bin/bash
- /app/entrypoint.sh
ports:
- "0.0.0.0:8080:8080"
volumes:
- ./recordings:/recordings
- ./auth:/auth
- ./certs:/certs
- ./data:/data
- ./VERSION:/app/VERSION:ro
- ./app/server.py:/app/server.py:ro
- ./app/cookie_keepalive.py:/app/cookie_keepalive.py:ro
- ./app/media_store.py:/app/media_store.py:ro
- ./app/recorder.py:/app/recorder.py:ro
- ./app/scheduler.py:/app/scheduler.py:ro
- ./app/tls_server.py:/app/tls_server.py:ro
- ./app/zoom_auth.py:/app/zoom_auth.py:ro
- ./app/static:/app/static:ro
- ./app/entrypoint.sh:/app/entrypoint.sh:ro
shm_size: "2gb"