IT/Software/Virtualization/Containerization/Docker Compose: Difference between revisions

From msgwiki
Jump to navigation Jump to search
Access restrictions were established for this page. If you see this message, you have no access to this page.
(Created page with "== About == Docker Compose was created to make building multi-container apps easier and faster to put together. == Example == Apps such as Wordpress and MediaWiki require 3 m...")
 
mNo edit summary
 
Line 1: Line 1:
== About ==
==About==
Docker Compose was created to make building multi-container apps easier and faster to put together.
Docker Compose was created to make building multi-container apps easier and faster to put together.


== Example ==
==Example==
Apps such as Wordpress and MediaWiki require 3 main components to run, the webserver(nginx), the PHP handler, and a database(MySQL).


Here is an example docker-compose.yml config file on Pastebin because the wiki isn't set up to do code highlighting.
* Apps such as WordPress and MediaWiki require 3 main components to run, the web-server(nginx), the PHP handler, and a database(MySQL).
 
* Here is an example docker-compose.yml config file on Pastebin because the wiki isn't set up to do code highlighting.
* https://pastebin.com/L1Awjdwd

Latest revision as of 19:40, 4 March 2020

About

Docker Compose was created to make building multi-container apps easier and faster to put together.

Example

  • Apps such as WordPress and MediaWiki require 3 main components to run, the web-server(nginx), the PHP handler, and a database(MySQL).
  • Here is an example docker-compose.yml config file on Pastebin because the wiki isn't set up to do code highlighting.
  • https://pastebin.com/L1Awjdwd