Category: Database, Data, nginx, containerization, yaml

This is the second part of the blog post series on how to containerize our Python development. In part 1, we have already shown how to containerize a Python service and the best practices for it. In this part, we discuss how to set up and wire other components to a containerized Python service.

This is fairly complicated and it would take precious development time if we need to do it frequently.

To avoid this, we can exploit docker secrets to have the password stored and share it securely with the services that need it.

Related Articles