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