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