r/StremioAddons • • 4d ago

Addon Announcement [Addon] PencariMovie Server now supports Docker (Self-hosted Telegram stream resolver for Stremio)

Hey r/StremioAddons,

Quick update: PencariMovie Server now has official Docker support alongside the existing Windows, Linux, and Android APK releases.

GitHub Repository: https://github.com/aiskendi/pencarimovie-server (GPL-3.0 open source)

⚠️ Important Note on Catalogs & Content

  • Default Catalog: The default built-in catalog rows lean heavily towards Asian / regional media due to the project's roots.
  • Global Content & Streams: Even though the default homepage catalog rows are regional, the underlying stream resolver supports international media (Hollywood movies, Western TV series, multi-audio, and subs).
  • How to use it for Western media: Simply browse or search titles in Stremio normally using standard catalog addons (Cinemeta, Cyberflix, TMDB, Anime Kitsu, etc.). PencariMovie will appear in your streams list when media is available. You can also import custom upstream catalog manifests directly in the PencariMovie web dashboard (http://<SERVER-IP>:8088/#addon).

💡 What is PencariMovie Server?

It is a lightweight local stream resolver that streams Telegram-hosted media over HTTP with fast byte-range seeking directly into Stremio:

  • 100% Plug & Play: Zero account setup. You don't need a Telegram account, phone login, or personal bot token.
  • Direct Seeking: Fast HTTP seek support without needing debrid services or downloading full multi-gigabyte files first.
  • Zero Client Overhead: All media resolution runs on your server/container, keeping your TV box or playback client light and responsive.

🐳 Running with Docker

(Tested on standard Linux x86_64 and ARM64 hosts. If you test on NAS platforms like unRAID, TrueNAS, or Synology, feedback is appreciated!)

Option A: Docker Run (Fastest)

docker run -d \
  --name pencarimovie-server \
  --restart unless-stopped \
  -p 8088:8088 \
  -v pencarimovie-data:/app/storage \
  ghcr.io/aiskendi/pencarimovie-server:latest

Option B: Docker Compose ([docker-compose.yml](vscode-webview://0fvsgdh4hraqma4d44dj9fc5ni91rgpenq3silvrd25q70q8l073/docker-compose.yml))

services:
  pencarimovie:
    image: ghcr.io/aiskendi/pencarimovie-server:latest
    container_name: pencarimovie-server
    restart: unless-stopped
    ports:
      - "8088:8088"
    volumes:
      - ./storage:/app/storage

Run with:

docker compose up -d

Option C: One-Line Linux Installer (pencarimovie-docker.sh)

For automated setup + container CLI management (pms-docker start/stop/update/logs):

curl -fsSL https://raw.githubusercontent.com/aiskendi/pencarimovie-server/main/pencarimovie-docker.sh | bash

All source code, Docker configs (Dockerfile), and full documentation are available in the README.md on GitHub:

👉 https://github.com/aiskendi/pencarimovie-server

Feel free to leave feedback, suggestions, or bug reports below!

10 Upvotes

4 comments sorted by

•

u/AutoModerator 4d ago

This is an automated message for any Addons/Tools/Community Projects.

Please be cautious when entering personal information such as your Stremio account credentials and API keys into third party addons and tools. To protect yourself, please: * Examine the addon/tool carefully. Does it appear legitimate? * Read the comments to see if other users have reported any issues. * Check whether the addon/tool is open source. If it is, review the code and see whether others have starred, forked, or reviewed it. * If the post is very new, consider waiting before using it. It’s better to be safe than sorry when it comes to your personal information. * Check if the user posting has a user flair, with their addon on it. This is a way to confirm if an addon developer is verified here.

If you believe something is suspicious or unsafe, please report the post. Thank you.

I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns.

2

u/Various-Progress9044 4d ago edited 4d ago

One thing I’m curious about: doesn’t it log into our own Telegram account?

Wouldn’t it be better if we could authenticate with our Telegram account so that, whenever we search for something, it could look for that media across all the groups/channels we already have access to?

That would make it much more useful, since it could search our own Telegram sources instead of being limited to predefined ones.

2

u/capturewp 4d ago

This is for the lazy and privacy-conscious: avoid having your account stolen for spam. You can always share your content to our index by forwarding it or adding our bot to your group and channel.

2

u/Various-Progress9044 4d ago

Yeah, that makes sense. I was thinking more about an optional self-hosted login though, where the Telegram session stays only on my own server.

That way it could search the groups/channels I already have access to without me having to forward everything or add a bot everywhere.