windows_in_docker/compose.yml
474791-dev 06b6e19ef9
Modify Windows service settings in compose.yml
Updated Windows service configuration in compose.yml to use version 11 and changed disk size to 2T. Adjusted volume mounts and removed resource limits and reservations.
2025-12-15 11:52:43 -05:00

25 lines
513 B
YAML

services:
windows:
image: dockurr/windows
container_name: windows
environment:
VERSION: "11"
DISK_SIZE: "2T"
devices:
- /dev/kvm
- /dev/net/tun
- /dev/dri
cap_add:
- NET_ADMIN
ports:
- 8006:8006
- 3389:3389/tcp
- 3389:3389/udp
volumes:
- ./windows:/storage
- /run/user/1000/pulse:/run/user/1000/pulse
environment:
PULSE_SERVER: unix:/run/user/1000/pulse/native
restart: always
stop_grace_period: 2m