Files
2026-05-20 23:05:43 -07:00

35 lines
917 B
Bash

# MeTube Docker Compose - Environment Variables
# Copy this file to .env and fill in your values
# --- Image ---
# MeTube image tag (use a specific version for stability, or 'latest')
METUBE_VERSION=latest
# --- Permissions ---
# User and group ID that MeTube runs as (match your host user to avoid permission issues)
METUBE_PUID=1000
METUBE_PGID=1000
# File permission mask applied to downloaded files (022 = owner rw, group/others r)
METUBE_UMASK=022
# --- Storage ---
# Host path where downloaded files will be saved
METUBE_DOWNLOAD=/path/to/downloads
# --- Network ---
# Host port to expose the MeTube web UI on
METUBE_PORT=8081
# --- Download Behavior ---
# Delete the file from disk when trashed in the UI (true/false)
METUBE_DELETE_FILE_ON_TRASHCAN=true
# Seconds after completion before a finished download is removed from the queue (3600 = 1 hour, 0 = disabled)
METUBE_CLEAR_COMPLETED_AFTER=3600