Skip to content

Docker Compose Cheatsheet

Jason Lewis edited this page Jul 5, 2021 · 3 revisions

Up

Note: These commands assume you are running them from the directory where the docker-compose.yml file resides.

Start Environment

docker-compose up

Start Environment Detached

docker-compose up -d

Start Environment and Rebuild Docker Images

docker-compose up --build

Stop Environment

docker-compose down

Clone this wiki locally