mirror of
https://github.com/docker/cli.git
synced 2026-01-25 03:42:05 +03:00
1.3 KiB
1.3 KiB
- title
- Installation from Binaries
- description
- This instruction set is meant for hackers who want to try out Docker on a variety of environments.
- keywords
- binaries, installation, docker, documentation, linux
Binaries
This instruction set is meant for hackers who want to try out Docker on a variety of environments.
Right now, the officially supported distributions are:
ubuntu_preciseubuntu_raring
But we know people have had success running it under
- Debian
- Suse
arch_linux
Check Your Kernel
Your host's Linux kernel must meet the Docker kernel
Get the docker binary:
wget --output-document=docker https://get.docker.io/builds/Linux/x86_64/docker-latest
chmod +x dockerRun the docker daemon
# start the docker in daemon mode from the directory you unpacked
sudo ./docker -d &Run your first container!
# check your docker version
sudo ./docker version
# run a container and open an interactive shell in the container
sudo ./docker run -i -t ubuntu /bin/bashContinue with the hello_world example.