Expected behavior
I guess that my application in Windows Server 2019 works as well as it does in Windows 10
Actual behavior
I have a web service in Docker + Apache deployes in Windows Server 2019, which is running well during a period of time, but after some minutes appears a error message when the application does NOT receive a message
…exited with code 4294967295 and the web service stops to work well.
But in wondows 10 everything is OK. No problem with the web service.
Docker version:
Docker version 19.03.13, build 0c38b2d
OS: Windows Server 2019
Dockerfile:
For Java 11, try this
FROM adoptopenjdk/openjdk11:alpine-jre
Refer to Maven build -> finalName
ARG JAR_FILE=app/sb-api-empleado.jar
cd /opt/app
WORKDIR /opt/app
cp app/sb-api-empleado.jar /opt/app/app.jar
COPY ${JAR_FILE} app.jar
java -jar /opt/app/app.jar
ENTRYPOINT [“java”,"-jar",“app.jar”]
Information
- the output of:
-
DockerDebugInfo.ps1
using Powershell on Windows
-
- a reproducible case if this is a bug, Dockerfiles FTW
- page URL if this is a docs issue or the name of a man page
- host distribution and version ( OSX 10.10.x, OSX 10.11.x, Windows, etc )
Steps to reproduce the behavior
- … First of all is deploying my app
docker-compose build
docker-compose up
It works OK during a time. The app receives transactions and it works well.
After a period of tiem appears the message even when the application doesn’t receive a message
- …