EE- Using docker to install virtual DSM

Hi,
I was able to install a virtual DSM instance by using this docker compose.

services:
  dsm:
    container_name: dsm
    image: vdsm/virtual-dsm:latest
    environment:
      DISK_SIZE: 16G
    devices:
      - /dev/kvm
    cap_add:
      - NET_ADMIN
    ports:
      - 5000:5000
    volumes:
      - /mnt/HD/docker/synology:/storage
    stop_grace_period: 2m

Change the volume to your dataset path. This is just a starting point and I am sure there are settings that can be optomized.