Files
tuliprox/docker/docker-compose.yml
T
euzuandGitHub fa5d3237f1 added docker ulimits, .env support, ptt fix (#867)
- **New Features**
  - Added automatic `.env` loading for secrets and environment variables, with custom file paths and existing-environment precedence.
  - Added a `--env-file` option and a sample environment configuration template.
  - Increased Docker file descriptor limits for improved reliability under high connection counts.

- **Bug Fixes**
  - Fixed title parsing for multi-byte UTF-8 characters, preventing crashes and incorrect volume extraction.

- **Documentation**
  - Added guidance for `.env` configuration, Docker usage, restart requirements, and resolving file descriptor exhaustion.
2026-09-15 12:51:09 +02:00

24 lines
497 B
YAML

version: '3'
services:
tuliprox:
container_name: tuliprox
image: ghcr.io/euzu/tuliprox:latest
working_dir: /app
volumes:
- ./data:/app/data
- ./config:/app/config
- ./backup:/app/backup
- ./downloads:/app/downloads
environment:
- TZ=Europe/Paris
# - TULIPROX_ENV_FILE=/path/to/.env
# env_file:
# - .env
ports:
- "8901:8901"
restart: unless-stopped
ulimits:
nofile:
soft: 65535
hard: 65535