Building a Multi-container Project With Docker
Docker is a software delivery service in packages called a container. Its main purpose is to enable rapid application deployment on differ...
https://www.czetsuyatech.com/2019/08/docker-multi-container.html
In this tutorial, we will create a docker and docker-compose template that will let us run a JavaEE web application with database connection deployed on a Wildfly instance.
Our docker-compose will contain the following containers:
- Postgresql - database
- Adminer - database management tool
- Tailon - searching and showing logs
- Wildfly - web application server
- Keycloak - authentication and authorization server
References
- https://github.com/czetsuya/Docker-Demo
- https://github.com/czetsuya/javaee6-docker-web
- https://github.com/czetsuya/docker-cheat-sheet
- https://www.keycloak.org
- https://wildfly.org
- https://www.adminer.org
- https://tailon.readthedocs.io/en/latest
Post a Comment