I have tried building the docker image locally as I wanted to make some changes to the app. I built it with docker build -t <<Image Name>> . .
I simply tried running with a docker run -d -p 8080:8080 <<Image Name>> . It crashes every-time. How do I run the container in daemon mode? Can you please share a docker-compose.yml file?
I have tried building the docker image locally as I wanted to make some changes to the app. I built it with
docker build -t <<Image Name>> .
.I simply tried running with a
docker run -d -p 8080:8080 <<Image Name>>
. It crashes every-time. How do I run the container in daemon mode? Can you please share adocker-compose.yml
file?