Docker image not working
See original GitHub issueWhen I access localhost:8080
everything is blank. I started the docker image without -d
to see the output and it’s a bunch of java errors. Is this image maitained?
Issue Analytics
- State:
- Created 6 years ago
- Comments:16 (3 by maintainers)
Top Results From Across the Web
docker image not working or running properly - Stack Overflow
The container isn't running. All the means is that it exited. When the container is run, the entrypoint line will be called, ...
Read more >How to Fix and Debug Docker Containers Like a Superhero
Container errors are tricky to diagnose, but some investigative magic works wonders. Read along to learn how to debug Docker containers.
Read more >Why am i unable to run docker image by its name?
$ sudo docker run -it --rm one Unable to find image 'one:latest' locally docker: Error response from daemon: pull access denied for one, ......
Read more >Run your CI/CD jobs in Docker containers - GitLab Docs
To run CI/CD jobs in a Docker container, you need to: Register a runner so that all jobs run in ... However, that...
Read more >How to Debug and Fix Common Docker Issues - DigitalOcean
Unfortunately, problems may arise when building your image and integrating all of the layers that your app needs, especially if you're new to ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
One thing to note: in the new 1.6.3 release, it is a .jar file instead of .war for performance reasons (jar yields faster startup time among other things). In our dockerfile this was changed to .jar, but if you use a custom dockerfile make sure to change that
I think documentation is a bit lacking for the docker setup.
If it can help whoever come across this issue here is a docker-compose file that made it for me:
Just run
docker-compose up -d
and browse http://localhost:8080