Salam Movie Server -

Create /srv/salam/docker-compose.yml with sensible defaults (replace image/name with the project's image):

version: '3.8'
services:
  salam:
    image: salam/movieserver:latest
    container_name: salam
    restart: unless-stopped
    ports:
      - "8080:8080"           # adjust based on app docs
    volumes:
      - /srv/salam/movies:/movies
      - /srv/salam/configs:/config
      - /srv/salam/transcode:/transcode
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=UTC

Then run:

Open your terminal (SSH into your server if remote) and create a folder to hold the configuration files. Salam Movie Server

mkdir salam-server
cd salam-server

You cannot run a server on a toaster. You need a machine that can store files and transcode (convert video formats on the fly for different devices). Create /srv/salam/docker-compose