diff --git a/Apps/MoviePilot/docker-compose.yml b/Apps/MoviePilot/docker-compose.yml new file mode 100644 index 0000000..5eb20b1 --- /dev/null +++ b/Apps/MoviePilot/docker-compose.yml @@ -0,0 +1,59 @@ +name: moviepilot +services: + moviepilot: + stdin_open: true + tty: true + container_name: moviepilot + network_mode: host + volumes: + - '/DATA/Media:/media' + - '/DATA/AppData/$AppID/moviepilot/config:/config' + - '/DATA/AppData/$AppID/moviepilot/core:/moviepilot/.cache/ms-playwright' + - '/var/run/docker.sock:/var/run/docker.sock:ro' + environment: + - 'NGINX_PORT=3005' + - 'PORT=3001' + - 'AUTH_SITE=iyuu' + - 'IYUU_SIGN=xxxx' + - 'SUPERUSER=casaos' + - 'API_TOKEN=moviepilot' + restart: always + image: jxxghp/moviepilot:1.9.9 +x-casaos: + architectures: + - amd64 + author: CasaOS Team + category: Media + developer: jxxghp + tagline: + en_us: Video Management + zh_cn: 视频管理 + description: + en_us: | + Movie Pilot is a video management tool that can automatically download and manage movies. + + Please note that this software is a bit complicated, you need to read the documentation: https://wiki.movie-pilot.org/configuration + zh_cn: | + Movie Pilot 是一个视频管理工具,可以自动下载和管理电影。 + + 注意本软件比较复杂,你需要阅读文档: https://wiki.movie-pilot.org/configuration + title: + en_us: Movie Pilot + pt_br: Movie Pilot + icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/MoviePilot/icon.png + main: moviepilot + port_map: "3000" + tips: + before_install: + en_us: | + Default Account + + | Username | Password | + |----------|----------| + | `casaos` | Get from log | + zh_cn: | + 默认账号 + + | 用户名 | 密码 | + |----------|----------| + | `casaos` | 从日志中获取 | diff --git a/Apps/MovieRobot/docker-compose.yml b/Apps/MovieRobot/docker-compose.yml new file mode 100644 index 0000000..9777aa1 --- /dev/null +++ b/Apps/MovieRobot/docker-compose.yml @@ -0,0 +1,57 @@ +name: movie-robot +services: + movie-robot: + command: + - /bin/sh + - -c + - sh /app/start.sh + environment: + LICENSE_KEY: 12313 + WORKDIR: /data + image: yipengfei/movie-robot:1.10.1 + network_mode: host + restart: always + volumes: + - type: bind + source: /DATA/AppData/$AppID/data + target: /data + - type: bind + source: /DATA/Media/Movies + target: /video + x-casaos: + envs: + - container: LICENSE_KEY + description: + en_us: "License Key" + zh_cn: "许可证密钥" + volumes: + - container: /data + description: + en_us: "" + - container: /video + description: + en_us: "" +x-casaos: + architectures: + - amd64 + author: CasaOS Team + category: Media + description: + en_us: | + Movie Robot is a video management tool that can automatically download and manage movies. + + Please note that this software is a paid software, but you can try it for 30 days. You can get a trial code and purchase code at https://moviebot.fun. + zh_cn: | + Movie Robot 是一个视频管理工具,可以自动下载和管理电影。 + + 注意本软件是一个付费软件,但是可以试用 30 天,你可以在 https://moviebot.fun 上获取试用码与购买码。 + tagline: + en_us: Video Management + zh_cn: 视频管理 + developer: Yee + title: + en_us: Movie Robot + pt_br: Movie Robot + icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/MovieRobot/icon.png + main: movie-robot + port_map: "1329" \ No newline at end of file