{"id":22436516,"url":"https://github.com/thesanchitadevi/docker-documentation","last_synced_at":"2026-05-18T15:35:40.235Z","repository":{"id":169043163,"uuid":"644902118","full_name":"thesanchitadevi/docker-documentation","owner":"thesanchitadevi","description":"Docker Documentation","archived":false,"fork":false,"pushed_at":"2023-05-27T17:09:09.000Z","size":11,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-19T09:53:04.970Z","etag":null,"topics":["docker","docker-container","docker-image","dockerfile"],"latest_commit_sha":null,"homepage":"https://docs.docker.com/","language":null,"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/thesanchitadevi.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":"2023-05-24T13:44:49.000Z","updated_at":"2023-05-24T13:47:56.000Z","dependencies_parsed_at":null,"dependency_job_id":"0964d50a-5086-4fce-b583-561544b02cf7","html_url":"https://github.com/thesanchitadevi/docker-documentation","commit_stats":null,"previous_names":["thesanchitadevi/docker-documentation"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/thesanchitadevi/docker-documentation","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thesanchitadevi%2Fdocker-documentation","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thesanchitadevi%2Fdocker-documentation/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thesanchitadevi%2Fdocker-documentation/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thesanchitadevi%2Fdocker-documentation/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thesanchitadevi","download_url":"https://codeload.github.com/thesanchitadevi/docker-documentation/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thesanchitadevi%2Fdocker-documentation/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33183065,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-18T09:27:30.708Z","status":"ssl_error","status_checked_at":"2026-05-18T09:27:28.300Z","response_time":71,"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-container","docker-image","dockerfile"],"created_at":"2024-12-06T00:08:04.263Z","updated_at":"2026-05-18T15:35:40.230Z","avatar_url":"https://github.com/thesanchitadevi.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Docker-Documentation\n\n## What is Docker?\n\nDocker is a software platform that allows developers to run, build, test and monitor their applications. In Docker, everything is based on Images. An image is a combination of a file system and parameters.\n\n## What is Image and Container?\n\n## Docker Commands\n### Docker Images\n---\n\u003e docker run image\n\n``` docker run hello-world ```\n\n| Command | Description |\n| --- | --- |\n| docker | tells the Docker program on the OS that something needs to be done. |\n| run | create an instance of an image, which is then called a container. |\n| hello-world | represents an image from where a container is created. |\n\n---\n\u003e docker images \n\n```docker images```\n\n To see the list of Docker images on the system which are currently installed.\n \n ---\n \u003e docker rmi ImageID\n\n```docker rmi ImageID```\n\n| Command | Description |\n| --- | --- |\n| docker | tells the Docker program on the OS that something needs to be done. |\n| rmi | command to remove any Docker images from the system. |\n| ImageID | put ID of the image which needs to be removed. |\n\n\n* Explore Docker Images \u003e \n[https://hub.docker.com/search?q=images](https://hub.docker.com/search?q=images)\n\n\n\n## Docker in node\n### [https://github.com/thesanchitadevi/docker-in-node](https://github.com/thesanchitadevi/docker-in-node)\n---\n\u003e create Dockerfile \n```ruby\n# ==== CONFIGURE =====\n# Use a Node 16 base image\nFROM node:16-alpine3.16\n\n# Expose the port on which the app will be running\nEXPOSE 3005\n\n# Set the working directory to /app inside the container\nWORKDIR /app\n\n# Copy app files\nCOPY . .\n\n# Install dependencies\nRUN npm install\n\n# Start the app\nCMD [\"node\", \"index.js\"]\n```\n\n---\n\u003e create .dockerignore\n```ruby\nnode_modules\n\npackage-lock.json\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthesanchitadevi%2Fdocker-documentation","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthesanchitadevi%2Fdocker-documentation","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthesanchitadevi%2Fdocker-documentation/lists"}