1
0
mirror of https://github.com/docker/cli.git synced 2026-01-15 07:40:57 +03:00
Files
cli/components/engine/docs/sources/index.rst
Andy Rothfusz e74c0d800f Fix #1684: Old Welcome is now Introduction. Working with Repos now follows Builder.
Clean up some doc build errors. Removed old Manifesto. Tweaked layout javascript
to allow direct link from first and last index elements.
Upstream-commit: c627ff6e209ac1f660a49371d4f6bd710470aacb
Component: engine
2013-08-27 14:29:49 -07:00

1.3 KiB

title
Docker Documentation
description
An overview of the Docker Documentation
keywords
containers, lxc, concepts, explanation

image

Introduction

docker, the Linux Container Runtime, runs Unix processes with strong guarantees of isolation across servers. Your software runs repeatably everywhere because its container_def includes any dependencies.

docker runs three ways:

  • as a daemon to manage LXC containers on your Linux host <kernel> (sudo docker -d)
  • as a CLI <cli> which talks to the daemon's REST API (docker run ...)
  • as a client of Repositories <working_with_the_repository> that let you share what you've built (docker pull, docker commit).

Each use of docker is documented here. The features of Docker are currently in active development, so this documentation will change frequently.

For an overview of Docker, please see the Introduction. When you're ready to start working with Docker, we have a quick start and a more in-depth guide to ubuntu_linux and other installation_list paths including prebuilt binaries, Vagrant-created VMs, Rackspace and Amazon instances.

Enough reading! Try it out! <running_examples>