Synology NAS

You can install WolfRecorder directly on your Synology NAS running DSM.

Start by launching the Container Manager.

Click the Project entry in the sidebar.

Then create a new project.

Enter a project name (e.g., `wr`) and select its location.

Next, choose Create docker-compose.yml.

Copy and paste the following text into the editor:

services:
  wolfrecorder:
    image: nightflyza/wolfrecorder:latest
    container_name: wolfrec
    ports:
      - "9090:80"
    volumes:
      - wr_storage:/wrstorage
      - wr_web:/var/www/html/wr
      - wr_db:/var/lib/mysql
      - wr_bin:/data/bin
    restart: unless-stopped
 
volumes:
  wr_storage:
  wr_web:
  wr_db:
  wr_bin:

Click Next.

And finish project creation.

The Docker image will now be downloaded automatically…

…and the container will be started.

Now you have ready to use WolfRecorder running on your NAS…

…and accessible at: http://your_nas_ip:9090

That`s all looks like