Let’s say we have an application inside docker image that connects to Apache Kafka on start and tries to publish a bunch of messages to topics. Now let’s imagine that you want to test your app locally and thus you’ve created a docker-compose.yml with Apache Kafka, Zookeeper, and your application...
Continue reading...DevOps
How to use locally published docker image in docker-compose using sbt-native-packager
Sometimes it is necessary to publish applications fitted inside docker images to the local docker registry without publishing them to the central Docker Hub. Usually, these cases cover situations of local testing and debugging when you want to create a specific environment using docker-compose and test your application against this...
Continue reading...