1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
| version: '3.3' services: moviepilot: stdin_open: true tty: true image: jxxghp/moviepilot-v2:latest container_name: moviepilot ports: - 43000:3000 volumes: - '/media:/media' - '/moviepilot/config:/config' - '/moviepilot/core:/moviepilot/.cache/ms-playwright' - '/var/run/docker.sock:/var/run/docker.sock:ro' environment: - 'NGINX_PORT=3000' - 'PORT=3001' - 'PUID=0' - 'PGID=0' - 'UMASK=000' - 'TZ=Asia/Shanghai' - 'AUTH_SITE=iyuu' - 'IYUU_SIGN=xxxx' - 'SUPERUSER=admin' - 'API_TOKEN=lh199210021122' restart: always
|