| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
(Previously known as Fig)
Compose is a tool for defining and running multi-container applications with Docker. With Compose, you define a multi-container application in a single file, then spin your application up in a single command which does everything that needs to be done to get it running.
Compose is great for development environments, staging servers, and CI. We don't recommend that you use it in production yet.
Using Compose is basically a three-step process.
A docker-compose.yml looks like this:
web: build: . ports: - "5000:5000" volumes: - .:/code links: - redis redis: image: redis
Compose has commands for managing the whole lifecycle of your application:
Want to help build Compose? Check out our contributing documentation.
| Back | FazBrowse Home | New Git URL |