Multiple postgres databases per single container

Docker multiple postgres databases

In development I like to use containerized databases. Recently I’ve been working on a micro service project that uses Postgres as a datasource. Each service has it’s own independent datasource. Running independent postgresql docker per service is resource consuming, so hack is to use a single postgres docker with multiple Read more…

Ansible playbook cheatsheet

Ansible playbook is a tool for automating documented tasks. These days I use it less since switching to github/gitlab actions, so keeping a cheatsheet here when I need it again… Installing on Ubuntu sudo apt update sudo apt install software-properties-common sudo add-apt-repository –yes –update ppa:ansible/ansible sudo apt install ansible More Read more…