mirror of
https://github.com/dockur/windows.git
synced 2026-02-04 07:59:43 +00:00
feat: Add multi-version compose structure with organized data folders
- Add compose/ folder with modular compose files for all Windows versions - Organize by category: desktop, legacy, server, tiny - Create data/ subfolders for each version's storage - Update .gitignore to track folder structure via .gitkeep files Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
acdeb62db2
commit
c1d3f8e886
46 changed files with 366 additions and 10 deletions
24
compose.yml
24
compose.yml
|
|
@ -1,19 +1,25 @@
|
|||
# Default compose file - Windows 11 Pro
|
||||
# For more versions, see compose/ folder
|
||||
|
||||
x-common: &common
|
||||
image: dockurr/windows
|
||||
devices:
|
||||
- /dev/kvm
|
||||
- /dev/net/tun
|
||||
cap_add:
|
||||
- NET_ADMIN
|
||||
restart: unless-stopped
|
||||
stop_grace_period: 2m
|
||||
|
||||
services:
|
||||
windows:
|
||||
image: dockurr/windows
|
||||
<<: *common
|
||||
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
|
||||
- ./data/win11:/storage
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue