02
Feb.
2025

Windows inside a Docker container.

Run any Windows you want inside a Docker Container !
In this video you will see how to install Docker and Docker Compose, how to create docker-compose file with all the settings and how to run and RDP to your Windows instance.

https://github.com/dockur/windows

services:
  windows:
    image: dockurr/windows
    container_name: windows
    environment:
      VERSION: "11"
    devices:
      - /dev/kvm
      - /dev/net/tun
    cap_add:
      - NET_ADMIN
    ports:
      - 8006:8006
      - 3389:3389/tcp
      - 3389:3389/udp
    stop_grace_period: 2m

gefunden auf: https://www.youtube.com/watch?v=3h1KtrL3CYQ&list=WL&index=2

Share

You may also like...

Schreibe einen Kommentar

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert