Local Docker Setup
curl -fsSL get.docker.com -o get-docker.sh && sh get-docker.sh
# OPTIONAL: Allow user to run Docker without sudo
dockerd-rootless-setuptool.sh install
echo "export PATH=/usr/bin:$PATH" >> ~/.$(basename $SHELL)rc
echo "export DOCKER_HOST=unix:///run/user/1000/docker.sock" >> ~/.$(basename $SHELL)rc
. ~/.$(basename $SHELL)rc
Download and install Docker Desktop or Colima.
Download and install Docker Desktop.
Restart your entire machine to finish initializing Docker.
After restarting, verify Docker is running as expected. Run the simple hello-world
Docker container. This should output “Hello from Docker!” as well as some other intro text:
docker run hello-world
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.
Last modified 12.09.2024: Remove extra alias bullet (#1541) (84007b2b)