skip to Main Content

spire.pdf in a docker container

I create an application that handle pdf and convert them to pdfa3 and also convert the document onto facturX. I developped my application using Springboot and it works fine. Now i'm trying to dockerize my application. I had issue with…

VIEW QUESTION

What is the path for application.properties (or similar file) in docker container?

I am dockerizing springboot application(with PostgreSQL). I want to overwrite application.properties in docker container with my own application.properties. My docker-compose.yml file looks like this: version: '2' services: API: image: 'api-docker.jar' ports: - "8080:8080" depends_on: - PostgreSQL environment: - SPRING_DATASOURCE_URL=jdbc:postgresql://PostgreSQL:5432/postgres -…

VIEW QUESTION

Redis – Spring sleuth error – correct the classpath of your application so that it contains compatible versions of the classes

When I start my spring boot application, I am running into this error below. Any help is highly appreciated. An attempt was made to call a method that does not exist. The attempt was made from the following location: org.springframework.cloud.sleuth.autoconfig.TraceAutoConfiguration.sleuthCurrentTraceContextBuilder(TraceAutoConfiguration.java:205)…

VIEW QUESTION
Back To Top
Search