arm64v8/clojure
Clojure is a dialect of Lisp that runs on the JVM.
500K+
Note: this is the "per-architecture" repository for the arm64v8
builds of the clojure
official image -- for more information, see "Architectures other than amd64?" in the official images documentation and "An image's source changed in Git, now what?" in the official images FAQ.
Maintained by:
the Docker Community
Where to get help:
the Docker Community Slack, Server Fault, Unix & Linux, or Stack Overflow
Dockerfile
linkstemurin-8-lein-2.11.2-bookworm-slim
, temurin-8-lein-bookworm-slim
temurin-8-lein-2.11.2-bullseye-slim
, temurin-8-lein-bullseye-slim
temurin-8-lein
, temurin-8-lein-2.11.2
, temurin-8-lein-2.11.2-jammy
, temurin-8-lein-jammy
temurin-8-bookworm
, temurin-8-tools-deps-1.12.0.1501-bookworm
, temurin-8-tools-deps-bookworm
temurin-8-bullseye
, temurin-8-tools-deps-1.12.0.1501-bullseye
, temurin-8-tools-deps-bullseye
temurin-8-noble
, temurin-8-tools-deps-1.12.0.1501-noble
, temurin-8-tools-deps-noble
temurin-11-lein-2.11.2-bookworm-slim
, temurin-11-lein-bookworm-slim
temurin-11-lein-2.11.2-bullseye-slim
, temurin-11-lein-bullseye-slim
temurin-11-lein
, temurin-11-lein-2.11.2
, temurin-11-lein-2.11.2-jammy
, temurin-11-lein-jammy
temurin-11-bookworm
, temurin-11-tools-deps-1.12.0.1501-bookworm
, temurin-11-tools-deps-bookworm
temurin-11-bullseye
, temurin-11-tools-deps-1.12.0.1501-bullseye
, temurin-11-tools-deps-bullseye
temurin-11-noble
, temurin-11-tools-deps-1.12.0.1501-noble
, temurin-11-tools-deps-noble
temurin-17-lein-2.11.2-bookworm-slim
, temurin-17-lein-bookworm-slim
temurin-17-lein-2.11.2-bullseye-slim
, temurin-17-lein-bullseye-slim
temurin-17-lein
, temurin-17-lein-2.11.2
, temurin-17-lein-2.11.2-jammy
, temurin-17-lein-jammy
temurin-17-bookworm
, temurin-17-tools-deps-1.12.0.1501-bookworm
, temurin-17-tools-deps-bookworm
temurin-17-bullseye
, temurin-17-tools-deps-1.12.0.1501-bullseye
, temurin-17-tools-deps-bullseye
temurin-17-noble
, temurin-17-tools-deps-1.12.0.1501-noble
, temurin-17-tools-deps-noble
lein-2.11.2-bullseye
, lein-bullseye
, temurin-21-lein-2.11.2-bullseye
, temurin-21-lein-bullseye
temurin-21-jammy
, temurin-21-tools-deps-1.12.0.1501-jammy
, temurin-21-tools-deps-jammy
temurin-21-noble
, temurin-21-tools-deps-1.12.0.1501-noble
, temurin-21-tools-deps-noble
temurin-23-lein
, temurin-23-lein-2.11.2
, temurin-23-lein-2.11.2-bookworm
, temurin-23-lein-bookworm
temurin-23-lein-2.11.2-bookworm-slim
, temurin-23-lein-bookworm-slim
temurin-23-lein-2.11.2-bullseye-slim
, temurin-23-lein-bullseye-slim
temurin-23-bullseye
, temurin-23-tools-deps-1.12.0.1501-bullseye
, temurin-23-tools-deps-bullseye
temurin-23-noble
, temurin-23-tools-deps-1.12.0.1501-noble
, temurin-23-tools-deps-noble
Where to file issues:
https://github.com/Quantisan/docker-clojure/issues
Supported architectures: (more info)amd64
, arm64v8
Published image artifact details:
repo-info repo's repos/clojure/
directory (history)
(image metadata, transfer size, etc)
Image updates:
official-images repo's library/clojure
label
official-images repo's library/clojure
file (history)
Source of this description:
docs repo's clojure/
directory (history)
Clojure is a dialect of the Lisp programming language. It is a general-purpose programming language with an emphasis on functional programming. It runs on the Java Virtual Machine, Common Language Runtime, and JavaScript engines. Like other Lisps, Clojure treats code as data and has a macro system.
Clojure has three major approaches to building and running projects:
There are variants of this image for all three of these tools and their respective releases. The most basic form of these tags is:
clojure:lein
clojure:boot
clojure:tools-deps
But you can also append a hyphen and the version of that tool you'd like to use. For example, for lein 2.8.1 you can use this image: clojure:lein-2.8.1
.
Add a Dockerfile
to an existing Leiningen/Clojure project with the following contents:
FROM arm64v8/clojure
COPY . /usr/src/app
WORKDIR /usr/src/app
CMD ["lein", "run"]
Then, run these commands to build and run the image:
$ docker build -t my-clojure-app .
$ docker run -it --rm --name my-running-app my-clojure-app
While the above is the most straightforward example of a Dockerfile
, it does have some drawbacks. The lein run
command will download your dependencies, compile the project, and then run it. That's a lot of work, all of which you may not want done every time you run the image. To get around this, you can download the dependencies and compile the project ahead of time. This will significantly reduce startup time when you run your image.
FROM arm64v8/clojure
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
COPY project.clj /usr/src/app/
RUN lein deps
COPY . /usr/src/app
RUN mv "$(lein uberjar | sed -n 's/^Created \(.*standalone\.jar\)/\1/p')" app-standalone.jar
CMD ["java", "-jar", "app-standalone.jar"]
Writing the Dockerfile
this way will download the dependencies (and cache them, so they are only re-downloaded when the dependencies change) and then compile them into a standalone jar ahead of time rather than each time the image is run.
You can then build and run the image as above.
If you have an existing Lein/Clojure project, it's fairly straightforward to compile your project into a jar from a container:
$ docker run -it --rm -v "$PWD":/usr/src/app -w /usr/src/app arm64v8/clojure lein uberjar
This will build your project into a jar file located in your project's target/uberjar
directory.
See the official image README for more details about using this image with boot and tools-deps.
The arm64v8/clojure
images come in many flavors, each designed for a specific use case.
arm64v8/clojure:<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.
Some of these tags may have names like bookworm or bullseye in them. These are the suite code names for releases of Debian and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Debian.
Some of these tags may have names like jammy or noble in them. These are the suite code names for releases of Ubuntu and indicate which release the image is based on. If your image needs to install any additional packages beyond what comes with the image, you'll likely want to specify one of these explicitly to minimize breakage when there are new releases of Ubuntu.
arm64v8/clojure:<version>-slim
This image does not contain the common packages contained in the default tag and only contains the minimal packages needed to run arm64v8/clojure
. Unless you are working in an environment where only the arm64v8/clojure
image will be deployed and you have space constraints, we highly recommend using the default image of this repository.
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 clojure/
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.
docker pull arm64v8/clojure