Run a complete, high-performance Windows operating system directly inside a Docker container. This tool automates the entire installation process, allowing you to deploy a fresh Windows environment with just a few commands. Simply start the container, connect via your web browser, and watch as your chosen version of Windows is installed automatically. It leverages KVM acceleration to ensure smooth and responsive performance, making it suitable for a wide range of tasks.
The project is incredibly flexible, offering extensive customization options through simple environment variables. Key features include:
services:
windows:
image: dockur/windows
container_name: windows
devices:
- /dev/kvm
cap_add:
- NET_ADMIN
ports:
- 8006:8006
- 3389:3389/tcp
- 3389:3389/udp
stop_grace_period: 2m
restart: on-failure
environment:
VERSION: "win11"
RAM_SIZE: "4G"
CPU_CORES: "2"
DISK_SIZE: "64G"
PASSWORD: ${PASSWORD}
volumes:
- ./storage:/storagePASSWORD=your_secure_passwordAuto-fetched about 18 hours ago
Auto-fetched about 18 hours ago