| .github/workflows | ||
| .dockerignore | ||
| .gitignore | ||
| Dockerfile | ||
| LICENSE.md | ||
| README.md | ||
The Stremio streaming server.js Docker image
Build image
Docker image can be easily built using the included Dockerfile.
By default, the image has ffmpeg installed with a specific version of ffmpeg-jellyfin,
for more information check the Dockerfile.
For the desktop build (currently, the only supported platform) do not pass the BUILD argument:
- Build docker image with
server.jsversionv4.19.0:
docker build --build-arg VERSION=v4.19.0 -t stremio/server:latest .
- Build a Docker image with a local
server.jsfound in the root of the folder: Note: By passing an emptyVERSIONargument you will skip downloading theserver.jsfrom AWS before overriding it with your local one.
docker build --build-arg VERSION= -t stremio/server:latest .
Arguments
VERSION- specify which version of theserver.jsyou'd like to be downloaded for the docker image.BUILD- For which platform you'd like to download theserver.js.
Other arguments:
NODE_VERSION- the version which will be included in the image andserver.jswill be ran with.NVM_VERSION-nvmversion to be used for managingnodejsversions.JELLYFIN_VERSION-jellyfin-ffmpegversion, we currently require version <= 4.4.1.
Run the image
docker run --rm -d -p 11470:11470 stremio/server:latest