Adjust a few minor bits for consistency/markdownfmt

This commit is contained in:
Tianon Gravi 2017-10-09 09:43:21 -07:00
parent 54b4997f26
commit ecaef63637
1 changed files with 5 additions and 5 deletions

View File

@ -6,23 +6,23 @@
# How to use this image # How to use this image
Note that if you are mounting a volume and the uid running Docker is not _1000_, you should run as user _root_ (`-u root`). Note that if you are mounting a volume and the uid running Docker is not `1000`, you should run as user `root` (`-u root`).
## Starting Groovysh ## Starting Groovysh
`docker run -it --rm groovy:latest` `docker run -it --rm groovy`
## Running a Groovy script ## Running a Groovy script
`docker run --rm -v "$PWD":/home/groovy/scripts -w /home/groovy/scripts groovy:latest groovy <script> <script-args>` `docker run --rm -v "$PWD":/home/groovy/scripts -w /home/groovy/scripts groovy groovy <script> <script-args>`
## Reusing the Grapes cache ## Reusing the Grapes cache
The local Grapes cache can be reused across containers by creating a volume and mounting it in _/home/groovy/.groovy/grapes_. The local Grapes cache can be reused across containers by creating a volume and mounting it in `/home/groovy/.groovy/grapes`.
```console ```console
docker volume create --name grapes-cache docker volume create --name grapes-cache
docker run --rm -it -v grapes-cache:/home/groovy/.groovy/grapes groovy:latest docker run --rm -it -v grapes-cache:/home/groovy/.groovy/grapes groovy
``` ```
**Note: Java 9 support is experimental** **Note: Java 9 support is experimental**