Thema configurator

  • Momenteel werken we aan deze website en het vullen van content.
Microsoft Windows 11 Pro via Docker

Microsoft Windows 11 Pro via Docker

Windows 11 Pro met: image: dockurr/windows
Dit zijn voor mij de beste instellingen om het feilloos te laten werken.

  • Sla het downloaden van de ISO over en verwijs naar de lokale ISO.
  • Intel iGPU Passthrough
  • poort voor webbrowser
  • andere poort voor RDP-app
  • Voor betere prestaties is het het beste om het volgende installeren: virtio-win-0.1.285.iso wanneer je bent aangemeld bij Windows.

YAML:
services:
  windows:
    image: dockurr/windows
    container_name: windows_11_pro
    privileged: true
    user: "0:0"  # for  hardware/volume access
    environment:
      RAM_SIZE: "10G"      # depend on RAMS you have
      CPU_CORES: "2"       # depend on your CPU
      CPU_MODEL: "host"    # Direct passthrough for speed
      DISK_SIZE: "200G"    # Your 200GB C: Drive
  
      # Auto-Login & Admin Setup
      USERNAME: "Administrator"
      PASSWORD: "admin"

      KVM: "Y"
      SCREEN_RESOLUTION: "1920x1080"
      TZ: "Europe/Amsterdam"
    devices:
      - /dev/kvm
      - /dev/dri:/dev/dri        # Intel iGPU Passthrough
    cap_add:
      - NET_ADMIN
    ports:
      - 8006:8006                # for Web Viewer
      - 3389:3389/tcp            # for RDP
      - 3389:3389/udp
    volumes:
      # Main OS Data
      - /volume1/docker/Windows11:/storage
      # FORCE skip download with your local ISO
      - /volume1/ISO/W.11.25H2.GiGA.AiO.NL.Dec.25_26200.7462.iso:/custom.iso:ro     # you can map the local iso of windows in any location so no need to download it or double copy it
      #  Map drivers to the root so the container detects them
      - /volume1/ISO/virtio-win-0.1.262.iso:/drivers.iso:ro
      # HERE I HAVE MAPPED THE entire NAS root (/volume1) to :/shared  CHANGE IF YOU NEED TO
      - /volume1:/shared
    restart: "no"
    logging:
      driver: "json-file"
      options:
        max-size: "10m"
        max-file: "3"
Terug
Naar boven