Skip to content
This repository has been archived by the owner on Aug 26, 2021. It is now read-only.

Docker Compose Support

Igor edited this page Aug 26, 2016 · 8 revisions

Intro

Docker Compose

Docker Compose is a tool that lets you define complex multi-container applications in YAML formatted text files (usually named docker-compose.yml) and then deploy these application with a single simple command:

docker-compose up
'''

In the docker-compose file it is possible to define multiple services (containers) with their specific properties (e.g. volume mounts port mappings, links, etc.). Is is also possible to specify a Docker file that defines how to build specific images that cannot be found in existing registries.