Files
home_server/filebot/docker-compose.yml
T
2024-02-03 11:58:42 +01:00

19 lines
419 B
YAML

version: '3'
services:
filebot:
container_name: filebot
image: coppit/filebot
env_file: .env
environment:
- WIDTH=1920
- HEIGHT=1080
- USER_ID=${PUID}
- GROUP_ID=${PGID}
ports:
- '${RDPPORT}:3389'
- '${WEBPORT}:8080'
volumes:
- '${APPDATA}:/config:rw'
- '${DOWNLOADSDIR}:/downloads:rw'
- '${MEDIADIR}:/media:rw'
restart: unless-stopped