windows_in_docker/.devcontainer/codespaces.yml
Heather Morris 23d2b01f32
Modify Windows service configuration in codespaces.yml
Updated the Windows service configuration in codespaces.yml to use a new image and added environment variables for version, disk size, username, and password.
2025-10-30 14:06:32 -04:00

23 lines
430 B
YAML

services:
windows:
image: dockurr/windows
container_name: windows
environment:
VERSION: "10"
DISK_SIZE: "250G"
USERNAME: "Heather"
PASSWORD: "heather"
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