When trying to use VS Code to open a devcontainer on a machine which uses Podman instead of Docker, it throws an error and insists that you install Docker.
Or you can put this in ~/.local/bin/docker:
#!/usr/bin/env bash
exec podman "$@"Be sure to make it executable (chmod +x ~/.local/bin/docker).