telegram-files/docker-compose.yaml
2024-12-21 11:47:52 +08:00

16 lines
444 B
YAML

services:
telegram-files:
container_name: telegram-files
image: telegram-files:latest
restart: always
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:80/"]
environment:
APP_ENV: ${APP_ENV:-prod}
APP_ROOT: ${APP_ROOT:-/app/data}
TELEGRAM_API_ID: ${TELEGRAM_API_ID}
TELEGRAM_API_HASH: ${TELEGRAM_API_HASH}
ports:
- "6543:80"
volumes:
- ./telegram-files:/app/data