Hello,
I have pulled down the image "luckfoxtech/luckfox_pico:1.0" and when I try to run it on Docker on Windows it will not start and dies immediately.
Does the Docker image only run on Ubuntu?
thanks!
Docker image on Windows
Docker can also run on Windows environments, but the configuration process is relatively cumbersome and not recommended. If you use Docker Desktop, you also need to install Windows Subsystem for Linux (WSL) before installing Docker Desktop software, and finally SSH login. It is more straightforward to compile in the WSL Ubuntu 22.04 environment directly on the computer.
I already do have WSL and SSH in my Windows environment and it is all configured correctly and runs other Linux-based docker images.
I did figure it out - I was just running the wrong command to start the run the container. I needed to run:
I can now try to set up the dev environment.
Code: Select all
docker run -dt --name luckfox luckfoxtech/luckfox_pico:1.0 /bin/bash -c "echo 'Hello'; /bin/bash"
Sure, you can actively share your configuration process on the forum, so that other users can avoid pitfalls in the future.