windows
windows copied to clipboard
container reboot starting installation again
I have shutdown the container using
docker compose down
and then started it again -
docker compose up -d
While accessing the container using ip:8006 i see installation process started again. Is it normal ? Or I am missing something.
No, is not normal.. what is your compose file?
version: "3" services: windows: image: dockurr/windows container_name: windows environment: VERSION: "win11" RAM_SIZE: "16G" CPU_CORES: "8" devices: - /dev/kvm cap_add: - NET_ADMIN ports: - 8006:8006 - 3389:3389/tcp - 3389:3389/udp stop_grace_period: 2m restart: on-failure
Looks normal.. Try to use a local folder on your disk for storage:
volumes:
- /var/win:/storage
Maybe it works better than a volume in your case.
sure