Initial commit

This commit is contained in:
twotalesanimation
2026-06-11 10:46:09 +02:00
commit 81ad7e4ea9
223 changed files with 39530 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
services:
transcoder:
build:
context: .
dockerfile: Dockerfile
# Load all variables from .env in this directory.
env_file: .env
environment:
WORK_DIR: /work
# Expose /work to the Docker host so you can inspect temp files during
# development. Remove this volume in production for fully ephemeral runs.
volumes:
- transcoder_work:/work
# The worker exits when the job queue is empty do not restart it.
restart: "no"
volumes:
transcoder_work: