Docker tips

How to solve Docker on Windows:

Over the years Windows was not the good candidate to work with Docker. But since the release of Docker for Windows, you can work with Docker containers on Windows much easier. However, it's not always...

Continue Reading โ†’

How to create topics in an Apache Kafka Docker image with docker-compose?

One of the easy solutions is to create a side container that will start after the broker and create the relevant topics. You can express the dependencies with depends_on and healthcheck operations: ...

Continue Reading โ†’

How to start one Docker container after the completion of another one?

It's simple. You should use the service_completed_successfully condition, as in the snippet below: version: '3.1' services: data_generator: image: waitingforcode/data-generator-blogging-platf...

Continue Reading โ†’