About 181,000 results
Open links in new tab
  1. OpenJDK Java 17 docker image - Stack Overflow

    Oct 11, 2021 · We are upgrading our microservices in docker to use Java 17 and previously we used the base image openjdk:11-jre-slim. What is the corresponding image for Java 17? There …

  2. java - How to dockerize a Maven project? How many ways to …

    I am new to Docker and I don't know how to run a Java project with Maven, even though I have read many documents and tried many methods. Should I build the image using Dockerfile? …

  3. dockerfile - Installing Java in Docker image - Stack Overflow

    Jul 3, 2015 · This is my very first try to create a Docker image and I'm hoping someone can help me out. My Dockerfile looks roughly like this: FROM mybaseimage:0.1 MAINTAINER ... ENV …

  4. docker - Dockerfile with java 17 - Stack Overflow

    Jul 27, 2023 · I want to crate docker image with java 17 and maven. My idea was to use openjdk image with java 17 but I see that opendjk is deprecated. What does it mean that is …

  5. How to build a docker container for a Java application

    What I want to do is build a docker image for my Java application but the following considerations should be true for most compiled languages. problem On my build server I want to produce a …

  6. docker - Base image for java - Stack Overflow

    May 31, 2017 · I am going to use java7 from docker repository. I understand that every image has a base image. I would like to know what is the base image for all Java versions in the docker …

  7. How to set Java heap size (Xms/Xmx) inside Docker container?

    Apr 28, 2015 · 50 I agree that it depends on what container you're using. If you are using the official Tomcat image, it looks like it's simple enough, you will need to pass the JAVA_OPTS …

  8. How to run Docker with python and Java? - Stack Overflow

    Jul 1, 2018 · Get Java via the package manager Get Python, PIP OPTIONAL: find and set JAVA_HOME Find the path to JAVA_HOME. Perhaps there is a better way to do this, but I did …

  9. Dynamically set JAVA_HOME of docker container - Stack Overflow

    Apr 27, 2017 · Set JAVA_HOME in docker container Default Docker file of the official image is Dockerfile If you still want your own image with Java home set. Add this lines to your …

  10. Externalising Spring Boot properties when deploying to Docker

    Sep 5, 2017 · Because CATALINA_OPTS is an easier route than making your Docker image responsible for creating a setenv.sh and passing the appropriate Docker env declarations into it.