There could be instances where you want to connect to Postgresql database on the host from your containers. In this post, we take look at configuration steps on how to connect to Postgresql running on host from your Docker containers.
We are going to use Docker Compose tool to define and run multi-container applications. We would be defining compose configuration as YAML file for our application’s services/networks/volumes etc., and then with a single command, we can create and start all the services from the configuration.
Here are the key steps :
Dockerfile
for your app’s environment.docker-compose.yml
for the services that make up your app services.docker-compose up
and Compose starts and runs your entire app.This quickstart assumes basic understanding of Docker concepts, please refer to earlier posts for understanding on Docker & how to install and containerize applications.
In the next section, we can look at how to define services in compose file for sample application with Angular as front end, Spring Boot as API, and for database as Postgres but this will be located on the host.
Quick Snapshot
We have already defined below docker files in the previous posts here & here. Create a new project directory and copy all dockerfiles to this folder.
FROM httpd:2.4 #copy angular dist folder to container COPY dist/ /usr/local/apache2/htdocs/ #copy htaccess and httpd.conf to container COPY .htaccess /usr/local/apache2/htdocs/ COPY httpd.conf /usr/local/apache2/conf/httpd.conf #change permissions RUN chmod -R 755 /usr/local/apache2/htdocs/ #expose port EXPOSE 4200
FROM openjdk:8-jre WORKDIR / #add required jars ADD spring-boot-rest-postgresql-0.0.1-SNAPSHOT.jar spring-boot-rest-postgresql-0.0.1-SNAPSHOT.jar #expose port EXPOSE 8080 #cmd to execute ENTRYPOINT ["java","-Djava.security.egd=file:/dev/./urandom","-jar","/spring-boot-rest-postgresql-0.0.1-SNAPSHOT.jar"]
Create a file called docker-compose.yml
in your project directory and paste the following:
version: '3' services: ui: build: context: . dockerfile: UIDockerfile ports: - '4200:4200' networks: - samplenet links: - 'api:api' api: build: context: . dockerfile: AppDockerfile ports: - '8080:8080' networks: - samplenet networks: samplenet: null
Above compose file defines 2 services as below:
ui
: This is for angular application,it uses an image that’s built from the UIDockerfile in the current directory and forwards the exposed port 4200
on the container to port 4200
on the host machine.api
: This is for spring boot application, it uses an image that’s built from the AppDockerfile in the current directory and forwards the exposed port 8080
on the container to port 8080
on the host machine.
samplenet
networkdepends_on
denotes the service dependencies. When you start the services, compose would start the dependent services as well.spring.datasource.url=jdbc:postgresql://<IP Address>:5432/postgres
Assuming Postgresql is already installed on the host machine, follow the below steps to configure the listen_addresses
on postgresql.conf
to accept all connections.
Also edit pg_hba.conf
file to add entry for the host connections like below
host all all 0.0.0.0/0 md5
Once you have completed the above configurations,next step is to start the application.In the current project directory, run docker-compose up
.Compose pulls all the required Docker image, builds an image for your code, and starts the services you defined.
Congrats! today we have learned how to configure Postgresql running on the host to be able to connect from Docker containers.
Like this post? Don’t forget to share it!
There are few things as valuable to a business as well-designed software. Organizations today rely…
The cryptocurrency industry is being reshaped by the fusion of blockchain technology and artificial intelligence…
Introduction Artificial Intelligence (AI) has also found its relevance in graphic design and is quickly…
Imagine a world where the brilliance of Artificial Intelligence (AI) meets the unbreakable security of…
In today’s fast-paced digital landscape, automation is not just a luxury but a necessity for…
The world of casino gaming has leveraged the emerging technology advancements to create immersive and…
This website uses cookies.