### 啟動Machine發生`CreateFile \\.\pipe\docker_engine: All pipe instances are busy.` ```powershell PS > podman machine start Starting machine "podman-machine-default" This machine is currently configured in rootless mode. If your containers require root permissions (e.g. ports < 1024), or if you run into compatibility issues with non-podman clients, you can switch using the following command: podman machine set --rootful API forwarding for Docker API clients is not available due to the following startup failures. CreateFile \\.\pipe\docker_engine: All pipe instances are busy. Podman clients are still able to connect. Machine "podman-machine-default" started successfully ``` 解決方法: ```powershell PS > podman machine stop PS > podman machine rm PS > podman machine init PS > podman machine start ```