Skip to content

Instantly share code, notes, and snippets.

@minghao51
Last active November 2, 2025 10:13
Show Gist options
  • Select an option

  • Save minghao51/ada73126d786e8a43c3ae2d1f58b9fa6 to your computer and use it in GitHub Desktop.

Select an option

Save minghao51/ada73126d786e8a43c3ae2d1f58b9fa6 to your computer and use it in GitHub Desktop.
linux mint 22 docker setup
sudo apt update
sudo apt install apt-transport-https ca-certificates curl gnupg
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker.gpg
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu noble stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
Code language: Bash (bash)
sudo apt update
sudo apt install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
sudo systemctl is-active docker
sudo docker run hello-world
sudo usermod -aG docker ${USER}
newgrp docker
# https://forums.linuxmint.com/viewtopic.php?t=429255
# https://linuxiac.com/how-to-install-docker-on-linux-mint-22/
@minghao51
Copy link
Author

minghao51 commented Nov 2, 2025

other setup for myself:
uv, 1panel, tmux,

tailscale

  • tailscale systray
  • tailscale configure systray --enable-startup=systemd

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment