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

39
compose/desktop/win10.yml Normal file
View file

@ -0,0 +1,39 @@
include:
- ../base.yml
services:
win10:
<<: *common
container_name: win10
environment:
VERSION: "10"
ports:
- 8010:8006
- 3310:3389/tcp
- 3310:3389/udp
volumes:
- ../../data/win10:/storage
win10e:
<<: *common
container_name: win10e
environment:
VERSION: "10e"
ports:
- 8014:8006
- 3314:3389/tcp
- 3314:3389/udp
volumes:
- ../../data/win10e:/storage
win10l:
<<: *common
container_name: win10l
environment:
VERSION: "10l"
ports:
- 8015:8006
- 3315:3389/tcp
- 3315:3389/udp
volumes:
- ../../data/win10l:/storage

39
compose/desktop/win11.yml Normal file
View file

@ -0,0 +1,39 @@
include:
- ../base.yml
services:
win11:
<<: *common
container_name: win11
environment:
VERSION: "11"
ports:
- 8011:8006
- 3311:3389/tcp
- 3311:3389/udp
volumes:
- ../../data/win11:/storage
win11e:
<<: *common
container_name: win11e
environment:
VERSION: "11e"
ports:
- 8012:8006
- 3312:3389/tcp
- 3312:3389/udp
volumes:
- ../../data/win11e:/storage
win11l:
<<: *common
container_name: win11l
environment:
VERSION: "11l"
ports:
- 8013:8006
- 3313:3389/tcp
- 3313:3389/udp
volumes:
- ../../data/win11l:/storage

27
compose/desktop/win7.yml Normal file
View file

@ -0,0 +1,27 @@
include:
- ../base.yml
services:
win7:
<<: *common
container_name: win7
environment:
VERSION: "7u"
ports:
- 8007:8006
- 3307:3389/tcp
- 3307:3389/udp
volumes:
- ../../data/win7:/storage
win7e:
<<: *common
container_name: win7e
environment:
VERSION: "7e"
ports:
- 8071:8006
- 3371:3389/tcp
- 3371:3389/udp
volumes:
- ../../data/win7e:/storage

27
compose/desktop/win8.yml Normal file
View file

@ -0,0 +1,27 @@
include:
- ../base.yml
services:
win81:
<<: *common
container_name: win81
environment:
VERSION: "8"
ports:
- 8008:8006
- 3308:3389/tcp
- 3308:3389/udp
volumes:
- ../../data/win81:/storage
win81e:
<<: *common
container_name: win81e
environment:
VERSION: "8e"
ports:
- 8081:8006
- 3381:3389/tcp
- 3381:3389/udp
volumes:
- ../../data/win81e:/storage