windows icon indicating copy to clipboard operation
windows copied to clipboard

container reboot starting installation again

Open atanumaj opened this issue 1 year ago • 4 comments

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.

atanumaj avatar Apr 06 '24 08:04 atanumaj

No, is not normal.. what is your compose file?

kroese avatar Apr 06 '24 08:04 kroese

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

atanumaj avatar Apr 06 '24 09:04 atanumaj

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.

kroese avatar Apr 06 '24 09:04 kroese

sure

atanumaj avatar Apr 06 '24 09:04 atanumaj