windows
windows copied to clipboard
ERROR: You can only enable DHCP while the container is on a macvlan network!
Hello,
despite declaring a macvlan network, I have this error when launching the stack.
`version: "3" services: windows: image: dockurr/windows container_name: windows environment: VERSION: "tiny11" DHCP: "Y" RAM_SIZE: "6G" CPU_CORES: "4" DISK_SIZE: "256G" volumes: - ./data:/storage devices: - /dev/vhost-net - /dev/kvm device_cgroup_rules: - 'c : rwm' cap_add: - NET_ADMIN ports: - 8006:8006 - 3389:3389/tcp - 3389:3389/udp stop_grace_period: 2m restart: on-failure networks: - maclan
networks: maclan: driver: macvlan driver_opts: parent: ens3 ipam: config: - subnet: 172.16.35.0/24 gateway: 172.16.35.1 ip_range: 172.16.35.0/24`
Thanks