mirror of https://github.com/docker/compose.git
The algorithm is like so: * get all the leaves of the graph, these are all the service that don't have any dependency * once a service is started we take the list of its parents (dependents) * if all the dependencies of each of those dependents are started then we can start it as well * if not then we continue to the next dependent Signed-off-by: Djordje Lukic <djordje.lukic@docker.com> |
||
---|---|---|
.github | ||
aci | ||
api | ||
backend | ||
cli | ||
config | ||
context | ||
docs | ||
ecs | ||
errdefs | ||
example | ||
formatter | ||
internal | ||
local | ||
metrics | ||
packaging | ||
progress | ||
prompt | ||
protos | ||
scripts | ||
server | ||
tests | ||
utils | ||
.dockerignore | ||
.gitattributes | ||
.gitignore | ||
.golangci.yml | ||
BUILDING.md | ||
CHANGELOG.md | ||
CONTRIBUTING.md | ||
Dockerfile | ||
INSTALL.md | ||
LICENSE | ||
MAINTAINERS | ||
Makefile | ||
NOTICE | ||
README.md | ||
builder.Makefile | ||
go.mod | ||
go.sum | ||
import-restrictions.yaml |
README.md
Docker Compose CLI
This CLI tool makes it easy to run Docker containers and Docker Compose applications in the cloud using either Amazon Elastic Container Service (ECS) or Microsoft Azure Container Instances (ACI) using the Docker commands you already know.
To get started, all you need is:
- An AWS or Azure account
- Windows: The Stable or Edge release of Docker Desktop
- macOS: The Stable or Edge release of Docker Desktop
- Linux: Install script
Please create issues to leave feedback.
Examples
- ECS: Deploying Wordpress to the cloud
- ACI: Deploying a Minecraft server to the cloud
- ACI: Setting Up Cloud Deployments Using Docker, Azure and Github Actions
Development
See the instructions in BUILDING.md for how to build the CLI and run its tests; including the end to end tests for local containers, ACI, and ECS. The guide also includes instructions for releasing the CLI.
Before contributing, please read the contribution guidelines which includes conventions used in this project.