faq.rst 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. :title: FAQ
  2. :description: Most frequently asked questions.
  3. :keywords: faq, questions, documentation, docker
  4. FAQ
  5. ===
  6. Most frequently asked questions.
  7. --------------------------------
  8. 1. **How much does Docker cost?**
  9. Docker is 100% free, it is open source, so you can use it without paying.
  10. 2. **What open source license are you using?**
  11. We are using the Apache License Version 2.0, see it here: https://github.com/dotcloud/docker/blob/master/LICENSE
  12. 3. **Does Docker run on Mac OS X or Windows?**
  13. Not at this time, Docker currently only runs on Linux, but you can use VirtualBox to run Docker in a
  14. virtual machine on your box, and get the best of both worlds. Check out the :ref:`install_using_vagrant` and :ref:`windows` installation guides.
  15. 4. **How do containers compare to virtual machines?**
  16. 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.
  17. 5. **Can I help by adding some questions and answers?**
  18. Definitely! You can fork `the repo`_ and edit the documentation sources.
  19. 42. **Where can I find more answers?**
  20. You can find more answers on:
  21. * `Docker club mailinglist`_
  22. * `IRC, docker on freenode`_
  23. * `Github`_
  24. * `Ask questions on Stackoverflow`_
  25. * `Join the conversation on Twitter`_
  26. .. _Docker club mailinglist: https://groups.google.com/d/forum/docker-club
  27. .. _the repo: http://www.github.com/dotcloud/docker
  28. .. _IRC, docker on freenode: irc://chat.freenode.net#docker
  29. .. _Github: http://www.github.com/dotcloud/docker
  30. .. _Ask questions on Stackoverflow: http://stackoverflow.com/search?q=docker
  31. .. _Join the conversation on Twitter: http://twitter.com/getdocker
  32. Looking for something else to read? Checkout the :ref:`hello_world` example.