Skip to content
This repository was archived by the owner on Jul 18, 2025. It is now read-only.

Commit 8111365

Browse files
Use console instead of sh in markdown documents when the snippet is a list of shell commands and outputs.
Signed-off-by: Silvin Lubecki <silvin.lubecki@docker.com>
1 parent cc05b95 commit 8111365

2 files changed

Lines changed: 4 additions & 5 deletions

File tree

BUILDING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ end you need to have `GOPATH` set in your environment.
3030

3131
At this point you can use `go` to checkout `docker-app` in your `GOPATH`:
3232

33-
```sh
33+
```console
3434
go get github.com/docker/app
3535
```
3636

@@ -39,14 +39,14 @@ You are ready to build `docker-app` yourself!
3939
`docker-app` uses `make` to create a repeatable build flow. It means that you
4040
can run:
4141

42-
```sh
42+
```console
4343
make
4444
```
4545

4646
This is going to build all the project binaries in the `./bin/`
4747
directory, run tests (unit and end-to-end).
4848

49-
```sh
49+
```console
5050
make bin/docker-app # builds the docker-app binary
5151
make bin/docker-app-darwin # builds the docker-app binary for darwin
5252
make bin/docker-app-windows.exe # builds the docker-app binary for windows
@@ -89,7 +89,7 @@ capabilities without using the `Makefile` targets. The following
8989
examples show how to specify a test name and also how to use the flag
9090
directly against `go test` to run root-requiring tests.
9191

92-
```sh
92+
```console
9393
# run the test <TEST_NAME>:
9494
go test -v -run "<TEST_NAME>" .
9595
```

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
An *experimental* utility to help make Compose files more reusable and sharable.
44

5-
65
## The problem application packages solve
76

87
Compose files do a great job of describing a set of related services. Not only are Compose files easy to write, they are generally easy to read as well. However, a couple of problems often emerge:

0 commit comments

Comments
 (0)