2013-05-21 13:47:16 -04:00
:title: FAQ
:description: Most frequently asked questions.
:keywords: faq, questions, documentation, docker
2013-03-25 22:52:52 -04:00
FAQ
===
Most frequently asked questions.
2013-03-26 15:14:58 -04:00
--------------------------------
2013-03-25 22:52:52 -04:00
2013-04-01 22:11:09 -04:00
1. **How much does Docker cost?**
2013-03-25 22:52:52 -04:00
2013-04-01 22:11:09 -04:00
Docker is 100% free, it is open source, so you can use it without paying.
2013-03-25 22:52:52 -04:00
2013-04-01 22:11:09 -04:00
2. **What open source license are you using?**
2013-03-25 22:52:52 -04:00
2013-04-01 22:11:09 -04:00
We are using the Apache License Version 2.0, see it here: https://github.com/dotcloud/docker/blob/master/LICENSE
2013-03-25 22:52:52 -04:00
2013-04-01 22:11:09 -04:00
3. **Does Docker run on Mac OS X or Windows?**
2013-03-25 22:52:52 -04:00
2013-06-03 14:45:19 -04:00
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 :ref: `install_using_vagrant` and :ref: `windows` installation guides.
2013-03-25 22:52:52 -04:00
2013-04-01 22:11:09 -04:00
4. **How do containers compare to virtual machines?**
2013-03-25 22:52:52 -04:00
2013-04-01 22:11:09 -04:00
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.
2013-03-25 22:52:52 -04:00
2013-04-01 22:11:09 -04:00
5. **Can I help by adding some questions and answers?**
2013-03-25 22:52:52 -04:00
2013-04-01 22:11:09 -04:00
Definitely! You can fork `the repo`_ and edit the documentation sources.
2013-03-26 15:14:58 -04:00
2013-04-01 22:11:09 -04:00
42. **Where can I find more answers?**
2013-03-26 15:14:58 -04:00
2013-04-01 22:11:09 -04:00
You can find more answers on:
2013-03-26 15:14:58 -04:00
2013-06-05 21:06:51 -04:00
* `Docker club mailinglist`_
* `IRC, docker on freenode`_
2013-04-01 22:11:09 -04:00
* `Github`_
* `Ask questions on Stackoverflow`_
* `Join the conversation on Twitter`_
2013-03-26 15:14:58 -04:00
2013-06-05 21:06:51 -04:00
.. _Docker club mailinglist: https://groups.google.com/d/forum/docker-club
2013-04-01 22:11:09 -04:00
.. _the repo: http://www.github.com/dotcloud/docker
2013-06-05 21:06:51 -04:00
.. _IRC, docker on freenode: irc://chat.freenode.net#docker
2013-04-01 22:11:09 -04:00
.. _Github: http://www.github.com/dotcloud/docker
.. _Ask questions on Stackoverflow: http://stackoverflow.com/search?q=docker
.. _Join the conversation on Twitter: http://twitter.com/getdocker
2013-03-25 22:52:52 -04:00
Looking for something else to read? Checkout the :ref: `hello_world` example.