Files
Vault/transcoder-remote/docker-compose.yml
T
twotalesanimation 81ad7e4ea9 Initial commit
2026-06-11 10:46:09 +02:00

19 lines
510 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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: