Arc-V DSM Container
Go to file
2023-03-28 19:30:42 +02:00
.github Update build.yml 2023-03-28 19:05:21 +02:00
serial Serial 2023-03-28 06:45:24 +02:00
build.sh Fixes 2023-03-28 18:42:02 +02:00
docker-compose.yml Compose 2023-03-27 19:57:42 +02:00
Dockerfile Refactor 2023-03-28 07:24:17 +02:00
generate-dhcpd-conf Ignore error when multiple interfaces are detected 2023-03-26 20:31:25 +02:00
install.sh Fixes 2023-03-28 18:42:02 +02:00
qemu-ifdown Fully working implementation 2019-03-11 00:35:19 -07:00
qemu-ifup Fully working implementation 2019-03-11 00:35:19 -07:00
readme.md Update readme.md 2023-03-28 19:30:42 +02:00
run.sh Fixes 2023-03-28 18:42:02 +02:00
serial.sh Fixes 2023-03-28 18:42:02 +02:00
server.sh Fixes 2023-03-28 18:42:02 +02:00

virtual-dsm

build_img gh_last_release_svg Docker Image Size Docker Pulls Count

A docker container of Synology DSM v7.1

Using the container

Via docker run:

$ docker run --rm -it \
    --name dsm \
    -e DISK_SIZE=16G \
    -e RAM_SIZE=512M \
    -p 80:5000 \
    -p 443:5001 \
    -p 5000:5000 \
    -p 5001:5001 \
    --cap-add NET_ADMIN \
    --cap-add SYS_ADMIN \
    --device=/dev/kvm:/dev/kvm \
    --device=/dev/fuse:/dev/fuse \
    --device=/dev/net/tun:/dev/net/tun \    
    kroese/virtual-dsm:latest

Via docker-compose.yml:

version: "3"
services:
    vm:
        container_name: dsm
        image: kroese/virtual-dsm:latest
        environment:
            DISK_SIZE: "16G"
            RAM_SIZE: "512M"
        cap_add:
            - NET_ADMIN
            - SYS_ADMIN
        devices:
            - /dev/kvm
            - /dev/fuse
            - /dev/net/tun
        ports:
            - 80:5000
            - 443:5001
            - 5000:5000
            - 5001:5001
        restart: on-failure