- Build the Docker image
cd pio/pioAtomTest-1/
docker build -t pio-ventilator .- Run
pio run -e megaatmega2560in a Docker container based on the image built
docker run --rm -it pio-ventilatorNote: If you choose to run a different pio sub-command in the container, e.g
test -e megaatmega2560 -v --without-uploading --no-reset, do so by adding it to the end of the docker run command:
docker run --rm -it pio-ventilator test -e megaatmega2560 -v --without-uploading --no-reset