How to Install Silo Server on Your Synology NAS

How to Install Silo Server on Your Synology NAS

Silo Server is a self-hosted media streaming server for movies, shows, music, and books. Point it at your media folders and stream to devices at home or away, with automatic direct play, remuxing, and hardware-accelerated transcoding. It includes a full web client and admin interface, supports multiple household profiles with parental controls, uses plugin-based metadata providers, and offers optional Jellyfin/Emby-compatible APIs so existing clients work alongside its own apps. Deployment is designed around a single Docker Compose command. In this step by step guide I will show you how to install Silo ServerĀ on your Synology NAS using Docker & Portainer.

šŸ’”Note: This guide works perfectly with the latest Silo Server Main TAG release.

šŸ’”Note: Check out How to Install Silo Server With Hardware Transcoding

  • STEP 1

Please Support My work by Making a Donation.

  • STEP 2

InstallĀ Portainer using my step by step guide. If you already have Portainer installed on your Synology NAS, skip this STEP. Attention: Make sure you have installed the latest Portainer version.

  • STEP 3

Go toĀ File StationĀ and open the docker folder. Inside the docker folder, create one new folder and name itĀ silo. Follow the instructions in the image below.
Note: Be careful to enter only lowercase, not uppercase letters.
Silo Server Synology NAS Set up 1

  • STEP 4

Now create ten new folders inside the silo folder that you have previously created at STEP 3, and name them catalog-seeds, compat, db, media, meilisearch, plugins, redis, rustfsdata, rustfslogs, transcode. Follow the instructions in the image below.
Note: Be careful to enter only lowercase, not uppercase letters.

Silo Server Synology NAS Set up 2

 

  • STEP 5

Log into Portainer using your username and password. On the left sidebar in Portainer, click onĀ HomeĀ thenĀ Live connect. Follow the instructions in the image below.

Portainer Add Stack NAS 1

On the left sidebar in Portainer, click on StacksĀ thenĀ + Add stack. Follow the instructions in the image below.

Portainer Add Stack NAS 2

  • STEP 6

In the Name field type in silo. Follow the instructions in the image below.

Note: Copy Paste the code below in the Portainer Stacks Web editor.

services:
  db:
    image: pgvector/pgvector:pg18
    container_name: Silo-DB
    hostname: silo-db
    command: ["postgres", "-c", "listen_addresses=*"]
    healthcheck:
      test: ["CMD-SHELL", "pg_isready -U silo"]
      interval: 5s
      timeout: 3s
      retries: 5
    security_opt:
      - no-new-privileges:true
    environment:
      POSTGRES_USER: silouser
      POSTGRES_PASSWORD: silopass      
      POSTGRES_DB: silo
      TZ: Europe/Bucharest
    volumes:
      - /volume1/docker/silo/db:/var/lib/postgresql:rw
    restart: on-failure:5

  redis:
    image: redis:alpine
    container_name: Silo-REDIS
    hostname: silo-redis
    healthcheck:
      test: ["CMD", "redis-cli", "ping"]
      interval: 5s
      timeout: 3s
      retries: 5
    security_opt:
      - no-new-privileges:true
    environment:
      TZ: Europe/Bucharest
    volumes:
      - /volume1/docker/silo/redis:/data:rw
    restart: on-failure:5

  meilisearch:
    image: getmeili/meilisearch:latest
    container_name: Silo-MEILISEARCH
    hostname: silo-meilisearch
    healthcheck:
      test: wget --no-verbose --tries=1 --spider http://localhost:7700
    security_opt:
      - no-new-privileges:true
    environment:
      MEILI_MASTER_KEY: ZwwfTW1Johkjc34jPQlaIoBKHjrVfigIzjVEZkLydo
      MEILI_NO_ANALYTICS: true
      TZ: Europe/Bucharest
    volumes:
      - /volume1/docker/silo/meilisearch:/meili_data:rw
    restart: on-failure:5

  silo:
    image: ghcr.io/silo-server/silo-server:latest
    container_name: Silo
    hostname: silo
    security_opt:
      - no-new-privileges:true
    environment:
       PUID: 1026
       PGID: 100
       TZ: Europe/Bucharest
      #SILO_PUBLIC_URL: https://silo.yourname.synology.me #Add your domain name or DDNS if you want to reverse proxy Silo
       MODE: integrated
       PORT: 8080
       JF_PORT: 8100
       SECRET_KEY: LPhwmYDbdJ9SK7wlnZJpm0tfYtnd2L6fcb2Vb7ilAcqMmrs7AXMlSqg7C4tumC43
       DATABASE_URL: postgres://silouser:silopass@silo-db:5432/silo?sslmode=disable
       REDIS_URL: redis://redis:6379
       SILO_PLUGIN_CACHE_DIR: /var/lib/silo/plugins
       POSTGRES_TUNE: auto
    ports:
      - 8098:8080
      - 8100:8100
      - 13378:13378
    volumes:
      - /volume1/docker/silo/plugins:/var/lib/silo/plugins:rw
      - /volume1/docker/silo/compat:/var/lib/silo/compat:rw
      - /volume1/docker/silo/transcode:/tmp/silo-transcode:rw
      - /volume1/docker/silo/catalog-seeds:/catalog-seeds:ro
      - /volume1/docker/silo/media:/mnt/media:ro
      - /proc/meminfo:/host/proc/meminfo:ro
    #devices:
      #- /dev/dri/renderD128:/dev/dri/renderD128 #hardware transcoding (Intel/AMD)
      #- /dev/dri/card0:/dev/dri/card0 #hardware transcoding (Intel/AMD)
    depends_on:
      db:
        condition: service_healthy
      redis:
        condition: service_healthy
    restart: on-failure:5

  rustfs:
   image: rustfs/rustfs:latest
   container_name: Silo-RustFS
   user: 0:0
   healthcheck:
      test: ["CMD-SHELL", "nc -z 127.0.0.1 9000 || exit 1"]
      interval: 10s
      timeout: 5s
      retries: 3
      start_period: 90s
   environment:
     RUSTFS_SERVER_DOMAINS: 192.168.1.18:9540
     RUSTFS_CONSOLE_CORS_ALLOWED_ORIGINS: "*"
     RUSTFS_CONSOLE_ENABLE: true
     RUSTFS_ACCESS_KEY: marius
     RUSTFS_SECRET_KEY: mariushosting
   volumes:
    - /volume1/docker/silo/rustfsdata:/data:rw
    - /volume1/docker/silo/rustfslogs:/logs:rw
   ports:
    - 9541:9000
    - 9540:9001
   restart: on-failure:5

Note: Before you paste the code above in the Web editor area below, change the value for TZ.Ā (Select your current Time Zone from this list.)
Note: Before you paste the code above in the Web editor area below, change the value for MEILI_MASTER_KEY and add your own MEILI_MASTER_KEY. ZwwfTW1Johkjc34jPQlaIoBKHjrVfigIzjVEZkLydo is an example for a MEILI_MASTER_KEY. (Generate your own Random 42 length MEILI_SECRET_KEY.)
Note: Before you paste the code above in the Web editor area below, change the value numbers for PUIDĀ andĀ PGIDĀ with your own values. (Follow my step by step guide on how to do this.)
Note: Before you paste the code above in the Web editor area below, change the value for SECRET_KEY.
(🟢Click this Link to Generate Your Own Free SECRET KEY.) šŸ–¼ļøCheck Example Screenshot. (In the prompt, type in the following text: openssl rand -base64 48Ā then hit enter on your Keyboard). šŸ–¼ļøCheck Example Screenshot and copy your SECRET_KEY.
Note: Before you paste the code above in the Web editor area below, change the media path folder with your own movies/media path folder. For example: my movies folder, where my media is, is in /volume1/docker/silo/media
Note: Before you paste the code above in the Web editor area below, change the value for RUSTFS_SERVER_DOMAINS and type in your own NAS Local IP followed by :9540
Note: Before you paste the code above in the Web editor area below, change the value for RUSTFS_ACCESS_KEY. Type in your own username. marius is an example for a username.
Note: Before you paste the code above in the Web editor area below, change the value for RUSTFS_SECRET_KEY. Type in your own password. mariushosting is an example for a password.

Silo Server Synology NAS Set up 3

  • STEP 7

Scroll down on the page until you see a button namedĀ Deploy the stack. Click on it. Follow the instructions in the image below. The installation process can take up to a few minutes. It will depend on your Internet speed connection.

Silo Server Synology NAS Set up 4

  • STEP 8

If everything goes right, you will see the following message at the top right of your screen: ā€œSuccess Stack successfully deployedā€œ.

Portainer Success Stack NAS

  • STEP 9

🟢Please Support My work by Making a Donation. Almost 99,9% of the people that install something using my guidesĀ forget to support my work, or justĀ ignoreĀ STEP 1. I’ve been very honest about this aspect of my work since the beginning: I don’t run any ADS, I don’t require subscriptions, paid or otherwise, I don’t collect IPs, emails, and I don’t have any referral links from Amazon or other merchants. I also don’t have any POP-UPs or COOKIES. I have repeatedly been told over the years how much I have contributed to the community. It’s something I love doing and have been honest about my passion since the beginning. But I also Need The Community to Support me Back to be able to continue doing this work.

  • STEP 10

The installation process can take up to a few seconds/minutes. It will depend on your Internet speed connection. Now open your browser and type inĀ http://Synology-ip-address:9540 If everything goes right, you will see the RustFS Login page. Switch the theme to Dark. In the Account area, type in your own Username (RUSTFS_ACCESS_KEY) that you have previously added at STEP 6. In the Key area, type in your own Password (RUSTFS_SECRET_KEY) that you have previously added at STEP 6.Ā Click Login. Follow the instructions in the image below.

Silo Server Synology NAS Set up 5

  • STEP 11

On the left sidebar, click Browser. Click + Create Bucket. Type in a name for the Bucket. Click Create. Follow the instructions in the image below.

Silo Server Synology NAS Set up 6

  • STEP 12

Now open your browser and type in http://Synology-ip-address:8098 Create your own administrator account. Click Create Account. Follow the instructions in the image below.

Silo Server Synology NAS Set up 7

  • STEP 13

In the Jellyfin-Compatible App support area, type in the Public Jellyfin URL. http://YourNASIP followed by :8100
Click Web UI will be installed.
In the Public Assets Storage (S3) area, type in the Endpoint URL. http://YourNASIP followed by :9540
In the Bucket area, type in the Bucket name that you have previously created at STEP 11.
In the Access KeyĀ area, type in your own Username (RUSTFS_ACCESS_KEY) that you have previously added at STEP 6. In the Secret Key area, type in your own Password (RUSTFS_SECRET_KEY) that you have previously added at STEP 6.
Click Save & Continue. Follow the instructions in the image below.

Silo Server Synology NAS Set up 8

  • STEP 14

Click Continue. Follow the instructions in the image below.

Silo Server Synology NAS Set up 9

  • STEP 15

Click Save & continue. Follow the instructions in the image below.

Silo Server Synology NAS Set up 10

  • STEP 16

Click Save & continue. Follow the instructions in the image below.

Silo Server Synology NAS Set up 11

  • STEP 17

Type in the name of your Library. In the Folders area, type in /mnt/media
Click Add library. Follow the instructions in the image below.

Silo Server Synology NAS Set up 12

  • STEP 18

Click Continue. Follow the instructions in the image below.

Silo Server Synology NAS Set up 13

  • STEP 19

Click Start using Silo. Follow the instructions in the image below.

Silo Server Synology NAS Set up 14

  • STEP 20

Click Skip tour. Follow the instructions in the image below.

Silo Server Synology NAS Set up 15

  • STEP 21

Click Skip. Follow the instructions in the image below.

Silo Server Synology NAS Set up 16

  • STEP 22

Your Silo dashboard at a glance! Go straight to the next STEP.

Silo Server Synology NAS Set up 17

  • STEP 23

On the left sidebar, click Settings. Click Storage.

In the Public Assets area, type in the Endpoint URL. http://YourNASIP followed by :9540
In the Bucket area, type in the Bucket name that you have previously created at STEP 11.
In the Access KeyĀ area, type in your own Username (RUSTFS_ACCESS_KEY) that you have previously added at STEP 6. In the Secret Key area, type in your own Password (RUSTFS_SECRET_KEY) that you have previously added at STEP 6. Follow the instructions in the image below.

Silo Server Synology NAS Set up 18

  • STEP 24

Click Check Connection. Click Save Changes. Follow the instructions in the image below.

Silo Server Synology NAS Set up 19

  • STEP 25

At the top right of the page, click Restart Server. Click Restart. Follow the instructions in the image below.

Silo Server Synology NAS Set up 20

  • STEP 26

Open Portainer. Click Containers. Select Silo. Click Restart. Follow the instructions in the image below.

Silo Server Synology NAS Set up 21

  • STEP 27

Once the Silo container is restarted, open Silo. On the left sidebar, click Settings. Click Branding. Refresh the page until you see the Upload icon is clickable. Now you can upload your brand icons and personalize your Silo Server thanks to RUSTFS bucket. Follow the instructions in the image below.

Silo Server Synology NAS Set up 22

  • STEP 28

Your personalized Silo Server at a glance!

Silo Server Synology NAS Set up 23

Enjoy Silo Server!

šŸ†˜TROUBLESHOOTING

If you encounter issues by using this container, make sure to check out the Common Docker issuesĀ article.

Note: If you want to run the Silo ServerĀ container over HTTPS, check How to Run Docker Containers Over HTTPS. In order to make Silo Server work via HTTPS, it’s mandatory to activate WebSocket.

Note: Can I run Docker on my Synology NAS?Ā See the supported models.
Note: How to Back Up Docker Containers on your Synology NAS.
Note: Find outĀ how to update the Silo Server container with the latest image.
Note: How to Free Disk Space on Your NAS if You Run Docker.
Note: How to Schedule Start & Stop For Docker Containers.
Note: How to Activate Email Notifications.
Note: How to Add Access Control Profile on Your NAS.
Note: How to Change Docker Containers Restart Policy.
Note: How to Use Docker Containers With VPN.
Note: Convert Docker Run Into Docker Compose.
Note: How to Clean Docker.
Note: How to Clean Docker Automatically.
Note: Best Practices When Using Docker and DDNS.
Note: Some Docker Containers Need WebSocket.
Note: Find out the Best NAS Models For Docker.
Note: Activate Gmail SMTP For Docker Containers

This post was updated on Tuesday / August 18th, 2026 at 11:32 PM

No sponsors, no corporations, no ads, no subscriptions, no membership tiers, no referral links, no pop-ups, no cookies, no tracking code. Just pure guides for the community from Marius.