Skip to content
Discussion options

You must be logged in to vote

For anyone with this issue, I was able to get connectivity by network_mode: bridge to the Windows service in docker-compose.yml just above the ports: line:

name: "winboat"
volumes:
  data: 
services:
  windows:
    image: "ghcr.io/dockur/windows:5.07"
    container_name: "WinBoat"
    environment:
      VERSION: "custom"
      RAM_SIZE: "12G"
      CPU_CORES: "8"
      DISK_SIZE: "512G"
      USERNAME: "****"
      PASSWORD: "********"
      HOME: "${HOME}"
      LANGUAGE: "English"
      HOST_PORTS: "7149"
      ARGUMENTS: "-qmp tcp:0.0.0.0:7149,server,wait=off"
    cap_add:
      - "NET_ADMIN"
    privileged: true
    network_mode: bridge
    ports:
      - "8006:8006"
      - "7148:714…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by GaryScottMartin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
1 participant