syntax highlighting : Remove sh from code block which incorrectly highlights shell commands. (#3504)

This commit is contained in:
Dee Koder 2016-12-28 16:07:05 -08:00 committed by Harshavardhana
parent f9025652df
commit 00baec1746

View File

@ -6,13 +6,13 @@ Minio server is light enough to be bundled with the application stack, similar t
## Docker Container ## Docker Container
### Stable ### Stable
```sh ```
docker pull minio/minio docker pull minio/minio
docker run -p 9000:9000 minio/minio server /export docker run -p 9000:9000 minio/minio server /export
``` ```
### Edge ### Edge
```sh ```
docker pull minio/minio:edge docker pull minio/minio:edge
docker run -p 9000:9000 minio/minio:edge server /export docker run -p 9000:9000 minio/minio:edge server /export
``` ```