skip to Main Content

How to connect to DB2 running on docker

I have installed the image ibmcom/db2 on docker running on local Docker Desktop on Windows 10. Following this guide to setup: https://www.ibm.com/docs/en/db2/11.5?topic=system-windows I am able to query the sample DB from the db2 command prompt, as described here: https://www.ibm.com/docs/en/db2/11.5?topic=windows-testing-your-db2-community-edition-docker-image-installation-systems The…

VIEW QUESTION

connect docker postgres from outside (DBeaver)

I am using Airflow through Docker-compose. The same docker-compose.yml has an image of Postgres as well. The config looks like below - postgres: image: postgres:13 ports: - 5432:5432 environment: POSTGRES_USER: airflow POSTGRES_PASSWORD: airflow POSTGRES_DB: airflow volumes: - postgres-db-volume:/var/lib/postgresql/data healthcheck: test:…

VIEW QUESTION
Back To Top
Search