From 241a6a7c4d4bf42373bd110d403b6a017c3bf87a Mon Sep 17 00:00:00 2001 From: Andy Bunce Date: Wed, 3 Dec 2025 10:37:38 +0000 Subject: [PATCH] [add] windows --- windows/compose.yaml | 19 +++++++++++++++++++ windows/readme.md | 2 ++ windows/windows/.gitignore | 8 ++++++++ 3 files changed, 29 insertions(+) create mode 100644 windows/compose.yaml create mode 100644 windows/readme.md create mode 100644 windows/windows/.gitignore diff --git a/windows/compose.yaml b/windows/compose.yaml new file mode 100644 index 0000000..a0b9282 --- /dev/null +++ b/windows/compose.yaml @@ -0,0 +1,19 @@ +services: + windows: + image: dockurr/windows + container_name: windows + environment: + VERSION: "11" + devices: + - /dev/kvm + - /dev/net/tun + cap_add: + - NET_ADMIN + ports: + - 8006:8006 + - 3389:3389/tcp + - 3389:3389/udp + volumes: + - ./windows:/storage + restart: always + stop_grace_period: 2m \ No newline at end of file diff --git a/windows/readme.md b/windows/readme.md new file mode 100644 index 0000000..994010c --- /dev/null +++ b/windows/readme.md @@ -0,0 +1,2 @@ +> Windows inside a Docker container. +> https://github.com/dockur/windows diff --git a/windows/windows/.gitignore b/windows/windows/.gitignore new file mode 100644 index 0000000..1e04ba0 --- /dev/null +++ b/windows/windows/.gitignore @@ -0,0 +1,8 @@ +# .gitignore sample +################### + +# Ignore all files in this dir... +* + +# ... except for this one. +!.gitignore