{"id":15127740,"url":"https://github.com/jewel-cse/microservices-architecture","last_synced_at":"2026-01-20T21:02:16.752Z","repository":{"id":242121206,"uuid":"802737050","full_name":"Jewel-cse/Microservices-Architecture","owner":"Jewel-cse","description":null,"archived":false,"fork":false,"pushed_at":"2024-06-01T17:24:56.000Z","size":97,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-05T19:18:51.291Z","etag":null,"topics":["bulkhead","circuit-breaker","docker-compose","docker-container","docker-image","feign-client","feign-service","microservices","netflix-eureka","rate-limiter","resilience4j","retry","spring-cloud","spring-cloud-config","spring-cloud-gateway","zipkin"],"latest_commit_sha":null,"homepage":"","language":"Java","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/Jewel-cse.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-05-19T05:58:56.000Z","updated_at":"2024-06-01T17:24:59.000Z","dependencies_parsed_at":"2024-05-31T19:24:15.561Z","dependency_job_id":"4ea49ecf-11e4-4e1f-a204-693dc85802f0","html_url":"https://github.com/Jewel-cse/Microservices-Architecture","commit_stats":null,"previous_names":["jewel-cse/microservices-architecture"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jewel-cse%2FMicroservices-Architecture","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jewel-cse%2FMicroservices-Architecture/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jewel-cse%2FMicroservices-Architecture/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jewel-cse%2FMicroservices-Architecture/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Jewel-cse","download_url":"https://codeload.github.com/Jewel-cse/Microservices-Architecture/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247386317,"owners_count":20930625,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["bulkhead","circuit-breaker","docker-compose","docker-container","docker-image","feign-client","feign-service","microservices","netflix-eureka","rate-limiter","resilience4j","retry","spring-cloud","spring-cloud-config","spring-cloud-gateway","zipkin"],"created_at":"2024-09-26T02:05:22.463Z","updated_at":"2026-01-20T21:02:16.696Z","avatar_url":"https://github.com/Jewel-cse.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Deployment using Docker and kubernetes\n## Step 1:\n\u003eCreate a spring boot application\n\u003eBuild an image using maven plugin\n```\n  mvn spring-boot:build-image -DskipTests\n```\n\u003e -DskipTest for faster build\n###Some docker image command\n\u003eTo see the list of images\n```\n   docker images\n````\n\u003eDisplays the history of an image, showing the commands used to create each layer\n```\n  docker image history \u003cimage id\u003e\n```\n\u003eProvides detailed information about a specific image, including its configuration and layers\n```\n  docker image inspect \u003cimage id\u003e   : gives the info about images\n```\n\u003eDeletes the specified image from the local system\n```\n  docker image remove \u003cimage id\u003e : remove from local\n```\n\n\n## Step 2:\n### Container Run\n\u003e\u003ehostPort:containerPort and when docker desktop is restart the container is run automatically\n```\n  docker run -p 5000:5000 -d —restart=always projectName:tagName\n```\n\n\u003eMemory use maxi 512megabyts and cpu 5% = 5,000 bcz  (100,000 = 100%)  check it by \u003cdocker system dif\u003e\n```\n  docker run -p 5001:5000 -m 512m —cpu-quota 5000 - projectname:tagename\n```\n## docker container related commands\n\u003ePauses all processes within a container\n```\n  docker container pause \u003cimage id\u003e\n```\n\u003eResumes all processes within a paused container\n```\n  docker container unpause \u003cimage id\u003e\n```\n\u003eProvides detailed information about a specific container\n```\n  docker container inspect \u003cimage id\u003e\n```\n\u003eLists all containers, including stopped ones\n```\n  docker container ls -a\n```\n\u003eRemoves all stopped containers\n```\n  docker container prune\n```\n\u003eFollows and displays real-time logs from a container.\n```\n  docker container logs -f \u003ccontainer id\u003e\n```\n\u003eGracefully shutdown a running container\n```\n  docker container stop\n```\n\u003eImmediately shutdown a running container\n```\n  docker container kill \u003ccontainer id\u003e\n```\n\n## Some other Docker Commands\n\u003eDisplays real-time events from the Docker daemon, showing what is happening with Docker\n```\n  docker events\n```\n\u003eLists all running processes within a specific container\n```\n  docker top \u003ccontainer id\u003e\n```\n\u003eShows a live stream of system resource usage statistics (CPU, memory, network, etc.) for running containers\n```\n  docker stats\n```\n\u003eDownloads an image from the Docker registry to the local system\n```\n  docker pull \u003cimage name\u003e\n```\n\u003eSearches the Docker Hub for images matching the specified term\n```\n  docker search\n```\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjewel-cse%2Fmicroservices-architecture","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjewel-cse%2Fmicroservices-architecture","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjewel-cse%2Fmicroservices-architecture/lists"}