groovy
Estimated reading time: 5 minutesApache Groovy is a multi-faceted language for the Java platform.
GitHub repo: https://github.com/groovy/docker-groovy
Library reference
This content is imported from the official Docker Library docs, and is provided by the original uploader. You can view the Docker Store page for this image at https://store.docker.com/images/groovy
Supported tags and respective Dockerfile
links
2.4.12-jdk7
,2.4-jdk7
,jdk7
(jdk7/Dockerfile)2.4.12-jre7
,2.4-jre7
,jre7
(jre7/Dockerfile)2.4.12-jdk7-alpine
,2.4-jdk7-alpine
,jdk7-alpine
(jdk7-alpine/Dockerfile)2.4.12-jre7-alpine
,2.4-jre7-alpine
,jre7-alpine
(jre7-alpine/Dockerfile)2.4.12-jdk8
,2.4-jdk8
,jdk8
,2.4.12-jdk
,2.4-jdk
,jdk
(jdk8/Dockerfile)2.4.12-jre8
,2.4-jre8
,jre8
,2.4.12-jre
,2.4-jre
,jre
,2.4.12
,2.4
,latest
(jre8/Dockerfile)2.4.12-jdk8-alpine
,2.4-jdk8-alpine
,jdk8-alpine
,2.4.12-jdk-alpine
,2.4-jdk-alpine
,jdk-alpine
(jdk8-alpine/Dockerfile)2.4.12-jre8-alpine
,2.4-jre8-alpine
,jre8-alpine
,2.4.12-jre-alpine
,2.4-jre-alpine
,jre-alpine
,2.4.12-alpine
,2.4-alpine
,alpine
(jre8-alpine/Dockerfile)2.4.12-jdk9
,2.4-jdk9
,jdk9
(jdk9/Dockerfile)2.4.12-jre9
,2.4-jre9
,jre9
(jre9/Dockerfile)2.5.0-beta-1-jdk7
,2.5-jdk7
(jdk7/Dockerfile)2.5.0-beta-1-jre7
,2.5-jre7
(jre7/Dockerfile)2.5.0-beta-1-jdk7-alpine
,2.5-jdk7-alpine
(jdk7-alpine/Dockerfile)2.5.0-beta-1-jre7-alpine
,2.5-jre7-alpine
(jre7-alpine/Dockerfile)2.5.0-beta-1-jdk8
,2.5-jdk8
,2.5.0-beta-1-jdk
,2.5-jdk
(jdk8/Dockerfile)2.5.0-beta-1-jre8
,2.5-jre8
,2.5.0-beta-1-jre
,2.5-jre
,2.5.0-beta-1
,2.5
(jre8/Dockerfile)2.5.0-beta-1-jdk8-alpine
,2.5-jdk8-alpine
,2.5.0-beta-1-jdk-alpine
,2.5-jdk-alpine
(jdk8-alpine/Dockerfile)2.5.0-beta-1-jre8-alpine
,2.5-jre8-alpine
,2.5.0-beta-1-jre-alpine
,2.5-jre-alpine
,2.5.0-beta-1-alpine
,2.5-alpine
(jre8-alpine/Dockerfile)2.5.0-beta-1-jdk9
,2.5-jdk9
(jdk9/Dockerfile)2.5.0-beta-1-jre9
,2.5-jre9
(jre9/Dockerfile)2.6.0-alpha-1-jdk7
,2.6-jdk7
(jdk7/Dockerfile)2.6.0-alpha-1-jre7
,2.6-jre7
(jre7/Dockerfile)2.6.0-alpha-1-jdk7-alpine
,2.6-jdk7-alpine
(jdk7-alpine/Dockerfile)2.6.0-alpha-1-jre7-alpine
,2.6-jre7-alpine
(jre7-alpine/Dockerfile)2.6.0-alpha-1-jdk8
,2.6-jdk8
,2.6.0-alpha-1-jdk
,2.6-jdk
(jdk8/Dockerfile)2.6.0-alpha-1-jre8
,2.6-jre8
,2.6.0-alpha-1-jre
,2.6-jre
,2.6.0-alpha-1
,2.6
(jre8/Dockerfile)2.6.0-alpha-1-jdk8-alpine
,2.6-jdk8-alpine
,2.6.0-alpha-1-jdk-alpine
,2.6-jdk-alpine
(jdk8-alpine/Dockerfile)2.6.0-alpha-1-jre8-alpine
,2.6-jre8-alpine
,2.6.0-alpha-1-jre-alpine
,2.6-jre-alpine
,2.6.0-alpha-1-alpine
,2.6-alpine
(jre8-alpine/Dockerfile)2.6.0-alpha-1-jdk9
,2.6-jdk9
(jdk9/Dockerfile)2.6.0-alpha-1-jre9
,2.6-jre9
(jre9/Dockerfile)
Quick reference
-
Where to get help:
the Docker Community Forums, the Docker Community Slack, or Stack Overflow -
Where to file issues:
https://github.com/groovy/docker-groovy/issues -
Maintained by:
the Apache Groovy project -
Published image artifact details:
repo-info repo’srepos/groovy/
directory (history)
(image metadata, transfer size, etc) -
Image updates:
official-images PRs with labellibrary/groovy
official-images repo’slibrary/groovy
file (history) -
Source of this description:
docs repo’sgroovy/
directory (history) -
Supported Docker versions:
the latest release (down to 1.6 on a best-effort basis)
What is Groovy?
Apache Groovy is a powerful, optionally typed and dynamic language, with static-typing and static compilation capabilities, for the Java platform aimed at improving developer productivity thanks to a concise, familiar and easy to learn syntax. It integrates smoothly with any Java program, and immediately delivers to your application powerful features, including scripting capabilities, Domain-Specific Language authoring, runtime and compile-time meta-programming and functional programming.
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
).
Starting Groovysh
docker run -it --rm groovy
Running a Groovy script
docker run --rm -v "$PWD":/home/groovy/scripts -w /home/groovy/scripts groovy groovy <script> <script-args>
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
.
docker volume create --name grapes-cache
docker run --rm -it -v grapes-cache:/home/groovy/.groovy/grapes groovy
Note: Java 9 support is experimental
Image Variants
The groovy
images come in many flavors, each designed for a specific use case.
groovy:<version>
This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of.
groovy:alpine
This image is based on the popular Alpine Linux project, available in the alpine
official image. Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general.
This variant is highly recommended when final image size being as small as possible is desired. The main caveat to note is that it does use musl libc instead of glibc and friends, so certain software might run into issues depending on the depth of their libc requirements. However, most software doesn’t have an issue with this, so this variant is usually a very safe choice. See this Hacker News comment thread for more discussion of the issues that might arise and some pro/con comparisons of using Alpine-based images.
To minimize image size, it’s uncommon for additional related tools (such as git
or bash
) to be included in Alpine-based images. Using this image as a base, add the things you need in your own Dockerfile (see the alpine
image description for examples of how to install packages if you are unfamiliar).
License
View license information for the software contained in this image.
As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained).
Some additional license information which was able to be auto-detected might be found in the repo-info
repository’s groovy/
directory.
As for any pre-built image usage, it is the image user’s responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within.
library, sample, groovy