Cannot access web service using url

Hey please help me to fix my issue I have a spring boot app hosted in render using docker but I cant access my app using the URL provided by render the problem is I can see my app already started fine in my logs

my docker file

FROM openjdk:20-jdk
VOLUME /tmp
COPY target/*.jar app.jar
ENTRYPOINT [“java”,“-jar”,“/app.jar”]
EXPOSE 8080
#dockerfile

Note : my app work fine when I used jar file using java -jar myFilename.jar

Can you share your app repository link and screenshot of the render log?

1 Like

I’have a private repository can you give me your github username

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.