Fix [docker-compose run] link (#13197)

* Fix [docker-compose run] link

* Update the syntax and fix broken links

Co-authored-by: Usha Mandya <47779042+usha-mandya@users.noreply.github.com>
This commit is contained in:
cuilei 2021-07-19 18:52:02 +08:00 committed by GitHub
parent 101fdd2a8a
commit 8b1610c1d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -99,7 +99,7 @@ services:
### Build the project
With those files in place, you can now generate the Rails skeleton app
using [docker-compose run](reference/run.md):
using [docker-compose run](../compose/reference/run.md):
```console
$ docker-compose run --no-deps web rails new . --force --database=postgresql
@ -184,7 +184,7 @@ test:
database: myapp_test
```
You can now boot the app with [docker-compose up](reference/up.md):
You can now boot the app with [docker-compose up](../compose/reference/up.md):
```console
$ docker-compose up