Skip to content

Commit

Permalink
docker: add docker compose cmd (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
tungbq authored Aug 13, 2024
1 parent 86a5896 commit ed4f38c
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,16 @@ docker exec -it container-name /bin/bash

# Cleanup docker (add `-f` flag to force cleanup)
docker system prune

## Docker Compose
# Start up containers as defined in the Docker Compose file
docker compose up

# Start up containers in detached mode
docker compose up -d

# Stop running containers
docker compose down
```

[Back to top 🔝](#cli-commands-reference)
Expand Down

0 comments on commit ed4f38c

Please sign in to comment.