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:
Michel Abboud 2026-01-28 22:37:10 +00:00
parent acdeb62db2
commit c1d3f8e886
46 changed files with 366 additions and 10 deletions

View file

@ -0,0 +1,15 @@
include:
- ../base.yml
services:
win2003:
<<: *common
container_name: win2003
environment:
VERSION: "2003"
ports:
- 8003:8006
- 3303:3389/tcp
- 3303:3389/udp
volumes:
- ../../data/win2003:/storage

View file

@ -0,0 +1,15 @@
include:
- ../base.yml
services:
win2008:
<<: *common
container_name: win2008
environment:
VERSION: "2008"
ports:
- 8108:8006
- 3208:3389/tcp
- 3208:3389/udp
volumes:
- ../../data/win2008:/storage

View file

@ -0,0 +1,15 @@
include:
- ../base.yml
services:
win2012:
<<: *common
container_name: win2012
environment:
VERSION: "2012"
ports:
- 8112:8006
- 3212:3389/tcp
- 3212:3389/udp
volumes:
- ../../data/win2012:/storage

View file

@ -0,0 +1,15 @@
include:
- ../base.yml
services:
win2016:
<<: *common
container_name: win2016
environment:
VERSION: "2016"
ports:
- 8016:8006
- 3316:3389/tcp
- 3316:3389/udp
volumes:
- ../../data/win2016:/storage

View file

@ -0,0 +1,15 @@
include:
- ../base.yml
services:
win2019:
<<: *common
container_name: win2019
environment:
VERSION: "2019"
ports:
- 8019:8006
- 3319:3389/tcp
- 3319:3389/udp
volumes:
- ../../data/win2019:/storage

View file

@ -0,0 +1,15 @@
include:
- ../base.yml
services:
win2022:
<<: *common
container_name: win2022
environment:
VERSION: "2022"
ports:
- 8022:8006
- 3322:3389/tcp
- 3322:3389/udp
volumes:
- ../../data/win2022:/storage

View file

@ -0,0 +1,15 @@
include:
- ../base.yml
services:
win2025:
<<: *common
container_name: win2025
environment:
VERSION: "2025"
ports:
- 8025:8006
- 3325:3389/tcp
- 3325:3389/udp
volumes:
- ../../data/win2025:/storage