From 6f4d6dabc6219e8b719193a53e66fe2d78626e35 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 11 Mar 2024 19:02:26 +0000 Subject: [PATCH] chore(deps): update dockurr/windows docker tag to v2.05 (#2795) --- apps/windows/config.json | 166 ++++++++++++++++++++------------ apps/windows/docker-compose.yml | 2 +- 2 files changed, 107 insertions(+), 61 deletions(-) diff --git a/apps/windows/config.json b/apps/windows/config.json index 5ce2f856..e06b8e2a 100644 --- a/apps/windows/config.json +++ b/apps/windows/config.json @@ -1,69 +1,115 @@ { - "name": "Windows", - "available": true, - "port": 8006, - "exposable": true, - "id": "windows", - "description": "Run windows in docker...because why not?", - "tipi_version": 3, - "version": "2.04", - "categories": ["utilities"], - "short_desc": "Full windows vm in your browser", - "author": "dockurr", - "source": "https://github.com/dockur/windows/", - "form_fields": [ + "name": "Windows", + "available": true, + "port": 8006, + "exposable": true, + "id": "windows", + "description": "Run windows in docker...because why not?", + "tipi_version": 4, + "version": "2.05", + "categories": [ + "utilities" + ], + "short_desc": "Full windows vm in your browser", + "author": "dockurr", + "source": "https://github.com/dockur/windows/", + "form_fields": [ + { + "type": "number", + "label": "RAM", + "hint": "RAM to asign to the VM (in gigabytes)", + "placeholder": "4", + "required": true, + "env_variable": "WINDOWS_RAM_GB" + }, + { + "type": "number", + "label": "CPU Cores", + "hint": "CPU cores to asign to the VM", + "placeholder": "4", + "required": true, + "env_variable": "WINDOWS_CPU_CORES" + }, + { + "type": "number", + "label": "Disk Size", + "hint": "Disk size for the VM, it will be used dynamically (in gigabytes)", + "placeholder": "16", + "required": true, + "env_variable": "WINDOWS_DISK_SIZE_GB" + }, + { + "type": "text", + "label": "Windows Version", + "hint": "The windows version to use", + "required": true, + "options": [ { - "type": "number", - "label": "RAM", - "hint": "RAM to asign to the VM (in gigabytes)", - "placeholder": "4", - "required": true, - "env_variable": "WINDOWS_RAM_GB" - + "label": "Windows 10", + "value": "win10" }, { - "type": "number", - "label": "CPU Cores", - "hint": "CPU cores to asign to the VM", - "placeholder": "4", - "required": true, - "env_variable": "WINDOWS_CPU_CORES" - + "label": "Windows 11", + "value": "win11" }, { - "type": "number", - "label": "Disk Size", - "hint": "Disk size for the VM, it will be used dynamically (in gigabytes)", - "placeholder": "16", - "required": true, - "env_variable": "WINDOWS_DISK_SIZE_GB" - + "label": "Windows 10 LTSC", + "value": "ltsc10" }, { - "type": "text", - "label": "Windows Version", - "hint": "The windows version to use", - "required": true, - "options": [ - { "label": "Windows 10", "value": "win10" }, - { "label": "Windows 11", "value": "win11" }, - { "label": "Windows 10 LTSC", "value": "ltsc10" }, - { "label": "Windows 8.1", "value": "win81" }, - { "label": "Windows 7", "value": "win7" }, - { "label": "Windows Vista", "value": "vista" }, - { "label": "Windows XP", "value": "winxp" }, - { "label": "Windows Server 2022", "value": "2022" }, - { "label": "Windows Server 2019", "value": "2019" }, - { "label": "Windows Server 2016", "value": "2016" }, - { "label": "Windows Server 2012", "value": "2012" }, - { "label": "Windows Server 2008", "value": "2008" }, - { "label": "Windows Tiny 11 Core", "value": "core11" }, - { "label": "Windows Tiny 11", "value": "tiny11" }, - { "label": "Windows Tiny 10", "value": "tiny10" } - ], - "env_variable": "WINDOWS_VERSION" + "label": "Windows 8.1", + "value": "win81" + }, + { + "label": "Windows 7", + "value": "win7" + }, + { + "label": "Windows Vista", + "value": "vista" + }, + { + "label": "Windows XP", + "value": "winxp" + }, + { + "label": "Windows Server 2022", + "value": "2022" + }, + { + "label": "Windows Server 2019", + "value": "2019" + }, + { + "label": "Windows Server 2016", + "value": "2016" + }, + { + "label": "Windows Server 2012", + "value": "2012" + }, + { + "label": "Windows Server 2008", + "value": "2008" + }, + { + "label": "Windows Tiny 11 Core", + "value": "core11" + }, + { + "label": "Windows Tiny 11", + "value": "tiny11" + }, + { + "label": "Windows Tiny 10", + "value": "tiny10" } - ], - "supported_architectures": ["arm64", "amd64"] - } - \ No newline at end of file + ], + "env_variable": "WINDOWS_VERSION" + } + ], + "supported_architectures": [ + "arm64", + "amd64" + ] +} diff --git a/apps/windows/docker-compose.yml b/apps/windows/docker-compose.yml index 20ecee0e..0f6cbd93 100644 --- a/apps/windows/docker-compose.yml +++ b/apps/windows/docker-compose.yml @@ -2,7 +2,7 @@ version: "3.9" services: windows: container_name: windows - image: dockurr/windows:2.04 + image: dockurr/windows:2.05 restart: unless-stopped devices: - /dev/kvm