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/faq.rst
Thatcher Peskens 1dbf41a0b1 Fixed some links
* Added Google group to FAQ on docs
* Changed IRC link
* Fixed link to contributing broken by 326faec
Upstream-commit: 0f23fb949dd894ff70641cc01ac116aa55083157
Component: engine
2013-06-05 18:06:51 -07:00

1.8 KiB

title
FAQ
description
Most frequently asked questions.
keywords
faq, questions, documentation, docker

FAQ

Most frequently asked questions.

  1. How much does Docker cost?

    Docker is 100% free, it is open source, so you can use it without paying.

  2. What open source license are you using?

    We are using the Apache License Version 2.0, see it here: https://github.com/dotcloud/docker/blob/master/LICENSE

  3. Does Docker run on Mac OS X or Windows?

    Not at this time, Docker currently only runs on Linux, but you can use VirtualBox to run Docker in a virtual machine on your box, and get the best of both worlds. Check out the install_using_vagrant and windows installation guides.

  4. How do containers compare to virtual machines?

    They are complementary. VMs are best used to allocate chunks of hardware resources. Containers operate at the process level, which makes them very lightweight and perfect as a unit of software delivery.

  5. Can I help by adding some questions and answers?

    Definitely! You can fork the repo and edit the documentation sources.

  6. Where can I find more answers?

    You can find more answers on:

Looking for something else to read? Checkout the hello_world example.