so, it is possible to use docker containers as a lightweight "use and throw away" vm
docker run -dit --name ubuntu ubuntu:24.04
# can also expose all host
docker run -dit --network host --name ubuntu ubuntu:24.04
docker exec -it ubuntu bashnext time you start the container it stays alive
docker stop ubuntu
docker start ubuntu
docker ps # still alive!