From fd65eb395772845a9b6e03f21fdc29c3f313c20d Mon Sep 17 00:00:00 2001 From: Kroese Date: Tue, 14 Oct 2025 01:24:11 +0200 Subject: [PATCH] feat: Add custom .yml for Github Codespaces --- .github/codespaces.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/codespaces.yml diff --git a/.github/codespaces.yml b/.github/codespaces.yml new file mode 100644 index 0000000..f133abb --- /dev/null +++ b/.github/codespaces.yml @@ -0,0 +1,19 @@ +services: + dsm: + container_name: dsm + image: vdsm/virtual-dsm + environment: + RAM_SIZE: "max" + DISK_SIZE: "max" + CPU_CORES: "max" + devices: + - /dev/kvm + - /dev/net/tun + cap_add: + - NET_ADMIN + ports: + - 5000:5000 + volumes: + - ./dsm:/storage + restart: always + stop_grace_period: 2m