Posts

Showing posts from March, 2023

Docker

Image
  What is Docker? Docker is an open-source platform for developing, packaging, and deploying applications in a containerized environment. It is a popular tool for building, shipping, and running distributed applications. Docker allows developers to easily create, deploy, and run applications in any environment, from a laptop to a production server. What is a container? A container is a lightweight, standalone executable package that contains everything an application needs to run, including code, libraries, dependencies, and configuration files. Containers isolate applications from their environment, making it easier to run the same application on different machines or operating systems. Containers can be created and destroyed quickly, making them a great choice for scalable, distributed applications. How does Docker work? Docker uses a client-server architecture, with the Docker client communicating with the Docker daemon to build, package, and run containers. The Docker daemon cr...

DataPipeline-with-DocumentAI-Form-Parser

Image
  Build an End-to-End Data Capture Pipeline using Document AI Task 1. Enable the APIs required for the lab You must enable the APIs for Document AI, Cloud Functions, Cloud Build, and Geocoding for this lab and then create the API key that is required by the Geocoding Cloud Function. In Cloud Shell, enter the following commands to enable the APIs required by the lab: gcloud services enable documentai.googleapis.com gcloud services enable cloudfunctions.googleapis.com gcloud services enable cloudbuild.googleapis.com gcloud services enable geocoding-backend.googleapis.com In the Cloud Console, in the  Navigation menu  ( ), click  APIs & services > Credentials . Select  Create credentials , then select  API key  from the dropdown menu. The API key created dialog box displays your newly created key. An API key is a long string containing upper and lower case letters, numbers, and dashes. For example,  a4db08b757294ea94c08f2df493...