Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(lint): Fixed 90-95% of Markdown lint violations across the repository #12587

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Prev Previous commit
Next Next commit
resolved
  • Loading branch information
Brijeshthummar02 committed Feb 28, 2025
commit ed4955185ff75d844529426249ff5b619244ab92
5 changes: 3 additions & 2 deletions docs/reference/compose.md
Original file line number Diff line number Diff line change
@@ -44,6 +44,7 @@ Define and run multi-container applications with Docker
| [`wait`](compose_wait.md) | Block until containers of all (or specified) services stop. |
| [`watch`](compose_watch.md) | Watch build context for service and rebuild/refresh containers when files are updated |


### Options

| Name | Type | Default | Description |
@@ -77,7 +78,7 @@ to their predecessors.
For example, consider this command line:

```console
docker compose -f docker-compose.yml -f docker-compose.admin.yml run backup_db
$ docker compose -f docker-compose.yml -f docker-compose.admin.yml run backup_db
```

The `docker-compose.yml` file might specify a `webapp` service.
@@ -122,7 +123,7 @@ have a `compose.yaml` file in a directory called `sandbox/rails`. You can use a
get the postgres image for the db service from anywhere by using the `-f` flag as follows:

```console
docker compose -f ~/sandbox/rails/compose.yaml pull db
$ docker compose -f ~/sandbox/rails/compose.yaml pull db
```

### Use `-p` to specify a project name