Apr 19, 2021Sync PostgreSQL with ElasticsearchIn this article, we will learn, how to sync PostgreSQL data to elasticsearch. There are lots of ways to sync PostgreSQL data with elasticsearch. Here will we learn PostgreSQL-elasticsearch sync with logstash. Logstash is a lightweight, open-source, server-side data processing pipeline that allows you to collect data from a variety…Elasticsearch4 min readElasticsearch4 min read
Aug 24, 2020Node.js REST API setup with Docker Compose, Express and PostgresLearn how to deploy a Node.js app with PostgreSQL DB using docker-compose file Docker-compose: Compose is a tool for defining and running multi-container Docker applications. With Compose, you use a YAML file to configure your application’s services. Then, with a single command, you create and start all the services from your configuration. …Docker3 min readDocker3 min read
Aug 24, 2020Kubernetes vs Docker swarmDifference between Kubernetes and Docker swarm Youtube tutorial link — https://www.youtube.com/watch?v=FmrAGliHvzQDocker2 min readDocker2 min readKubernetes vs Docker swarmDifference between Kubernetes and Docker swarmYoutube tutorial link — https://www.youtube.com/watch?v=FmrAGliHvzQ----
Aug 21, 2020Deploying services over docker swarmLearn how to deploy app over the swarm cluster What is a Docker Swarm? A Docker Swarm is a group of either physical or virtual machines that are running the Docker application and that have been configured to join together in a cluster. Once a group of machines have been clustered together, you can still…Docker4 min readDocker4 min read
Aug 20, 2020Deploy node.js web app on dockerLearn how to test and deploy a Node.js app using containers What is docker? Docker is a set of platform as a service products that use OS-level virtualization to deliver software in packages called containers. Containers are isolated from one another and bundle their own software, libraries and configuration files; they can communicate with each other through well-defined channels. Why use containers?Docker6 min readDocker6 min read