1
0
mirror of https://github.com/docker/cli.git synced 2026-01-18 08:21:31 +03:00
Files
cli/components/engine/docs/sources/installation/binaries.rst
Tianon Gravi ff01a9f153 Update "Binaries" installation language to point to distro packages first
Also, added a minor consistency update to our usage of "wget".
Upstream-commit: 65fcc81b426ced8f416da3260770705ac7c90580
Component: engine
2013-11-25 22:53:50 -07:00

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.

Before following these directions, you should really check if a packaged version of Docker is already available for your distribution. We have packages for many distributions, and more keep showing up all the time!

Check Your Kernel

Your host's Linux kernel must meet the Docker kernel

Get the docker binary:

wget https://get.docker.io/builds/Linux/x86_64/docker-latest -O docker
chmod +x docker

Run 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/bash

Continue with the hello_world example.