{"id":19588960,"url":"https://github.com/shivankk26/docker-learnings","last_synced_at":"2026-04-08T11:31:05.325Z","repository":{"id":246395632,"uuid":"820024775","full_name":"ShivankK26/Docker-Learnings","owner":"ShivankK26","description":"Welcome to the Docker Learnings Repository! This Repository contains all the Source Code and resources needed to learn how to Dockerize various applications, including a MERN application, React application, Vite application, and Next.js app.","archived":false,"fork":false,"pushed_at":"2024-07-02T08:49:05.000Z","size":67,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-03T12:26:19.604Z","etag":null,"topics":["docker","docker-compose","docker-container","docker-image","expressjs","git","mongodb","nextjs","nodejs","reactjs","vite","yaml","yaml-configuration"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ShivankK26.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-06-25T16:39:48.000Z","updated_at":"2024-07-02T08:50:18.000Z","dependencies_parsed_at":"2025-01-10T07:47:27.194Z","dependency_job_id":null,"html_url":"https://github.com/ShivankK26/Docker-Learnings","commit_stats":null,"previous_names":["shivankk26/docker-learnings"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ShivankK26/Docker-Learnings","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ShivankK26%2FDocker-Learnings","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ShivankK26%2FDocker-Learnings/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ShivankK26%2FDocker-Learnings/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ShivankK26%2FDocker-Learnings/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ShivankK26","download_url":"https://codeload.github.com/ShivankK26/Docker-Learnings/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ShivankK26%2FDocker-Learnings/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31553970,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-08T10:21:54.569Z","status":"ssl_error","status_checked_at":"2026-04-08T10:21:38.171Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["docker","docker-compose","docker-container","docker-image","expressjs","git","mongodb","nextjs","nodejs","reactjs","vite","yaml","yaml-configuration"],"created_at":"2024-11-11T08:16:43.846Z","updated_at":"2026-04-08T11:31:05.293Z","avatar_url":"https://github.com/ShivankK26.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Docker Learnings\n\nWelcome to the Docker Learnings Repository! This Repository contains all the Source Code and resources needed to learn how to Dockerize various applications, including a MERN application, React application, Vite application, and Next.js app.\n\n## Table of Contents\n\n- [Introduction](#introduction)\n- [Prerequisites](#prerequisites)\n- [Getting Started](#getting-started)\n- [Project Structure](#project-structure)\n- [Dockerizing Applications](#dockerizing-applications)\n  - [JavaScript Application](#javascript-application)\n  - [MERN Application](#mern-application)\n  - [React Application](#react-application)\n  - [Vite Application](#vite-application)\n  - [Next.js Application](#nextjs-application)\n- [Resources](#resources)\n- [Contributing](#contributing)\n- [License](#license)\n\n## Introduction\n\nThis Repository is Designed to help you learn Docker by providing Practical examples of Dockerizing different types of applications. Each Project folder contains the necessary Docker Configuration files and a step-by-step guide to help you Understand the Process.\n\n## Prerequisites\n\nBefore you begin, make sure you have the following installed:\n\n- [Docker](https://www.docker.com/get-started)\n- [Node.js](https://nodejs.org/)\n- [Git](https://git-scm.com/)\n\n## Getting Started\n\n1. Clone the repository:\n    ```bash\n    git clone https://github.com/ShivankK26/Docker-Learnings.git\n    ```\n\n2. Follow the instructions in each project folder to learn how to Dockerize the specific application.\n\n## Project Structure\n\nThe repository is organized into the following directories:\n\n- `hello-docker/`: Contains the Source Code and Docker configuration for a JavaScript application.\n-`mern-docker/`: Contains the Source Code and Docker Configuration for a MERN application.\n- `next-docker/`: Contains the Source Code and Docker Configuration for a Next.js application.\n- `react-docker/`: Contains the Source Code and Docker Configuration for a React application.\n- `vite-project/`: Contains the Source Code and Docker Configuration for a Vite Project.\n\n## Dockerizing Applications\n\n### JavaScript Application\n\nThe `hello-docker` directory contains a JavaScript application. Follow the steps below to dockerize it:\n\n1. Navigate to the `hello-docker` directory:\n    ```bash\n    cd hello-docker\n    ```\n\n### MERN Application\n\nThe `mern-docker` directory contains a full-stack MERN application. Follow the steps below to dockerize it:\n\n1. Navigate to the `mern-docker` directory:\n    ```bash\n    cd mern-docker\n    ```\n\n### React Application\n\nThe `react-docker` directory contains a React application. Follow the steps below to dockerize it:\n\n1. Navigate to the `react-docker` directory:\n    ```bash\n    cd react-docker\n    ```\n\n### Vite Application\n\nThe `vite-project` directory contains a Vite application. Follow the steps below to dockerize it:\n\n1. Navigate to the `vite-project` directory:\n    ```bash\n    cd vite-project\n    ```\n\n### Next.js Application\n\nThe `next-docker` directory contains a Next.js application. Follow the steps below to dockerize it:\n\n1. Navigate to the `next-docker` directory:\n    ```bash\n    cd next-docker\n    ```\n\n## Resources\n\nHere are some additional resources to help you learn Docker:\n\n- [Docker Documentation](https://docs.docker.com/)\n- [Node.js Docker Best Practices](https://nodejs.org/en/docs/guides/nodejs-docker-webapp/)\n- [Dockerizing a React App](https://mherman.org/blog/dockerizing-a-react-app/)\n- [Next.js Docker Example](https://nextjs.org/docs/deployment#docker-image)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshivankk26%2Fdocker-learnings","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshivankk26%2Fdocker-learnings","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshivankk26%2Fdocker-learnings/lists"}