{"id":28840052,"url":"https://github.com/didinj/quarkus-deployment-kubernetes-docker","last_synced_at":"2026-05-04T01:33:57.468Z","repository":{"id":299815698,"uuid":"1004047420","full_name":"didinj/quarkus-deployment-kubernetes-docker","owner":"didinj","description":"How to Deploy Quarkus Microservices to Kubernetes Using Docker","archived":false,"fork":false,"pushed_at":"2025-06-18T12:06:06.000Z","size":56,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-06-18T13:23:02.102Z","etag":null,"topics":["deployment","docker","kubernetes","minikube","quarkus"],"latest_commit_sha":null,"homepage":"https://www.djamware.com/post/6852394ce1d40c6d06e2b340/how-to-deploy-quarkus-microservices-to-kubernetes-using-docker","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/didinj.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"zenodo":null}},"created_at":"2025-06-18T03:30:19.000Z","updated_at":"2025-06-18T12:06:38.000Z","dependencies_parsed_at":"2025-06-18T13:23:10.331Z","dependency_job_id":"84c941cb-37bc-4d1f-a593-e30e4f5e3cd5","html_url":"https://github.com/didinj/quarkus-deployment-kubernetes-docker","commit_stats":null,"previous_names":["didinj/quarkus-deployment-kubernetes-docker"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/didinj/quarkus-deployment-kubernetes-docker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/didinj%2Fquarkus-deployment-kubernetes-docker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/didinj%2Fquarkus-deployment-kubernetes-docker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/didinj%2Fquarkus-deployment-kubernetes-docker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/didinj%2Fquarkus-deployment-kubernetes-docker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/didinj","download_url":"https://codeload.github.com/didinj/quarkus-deployment-kubernetes-docker/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/didinj%2Fquarkus-deployment-kubernetes-docker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32591601,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-03T22:12:39.696Z","status":"ssl_error","status_checked_at":"2026-05-03T22:09:10.534Z","response_time":103,"last_error":"SSL_read: 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":["deployment","docker","kubernetes","minikube","quarkus"],"created_at":"2025-06-19T15:02:07.282Z","updated_at":"2026-05-04T01:33:57.463Z","avatar_url":"https://github.com/didinj.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# How to Deploy Quarkus Microservices to Kubernetes Using Docker\n\nRead more article [here](https://www.djamware.com/post/6852394ce1d40c6d06e2b340/how-to-deploy-quarkus-microservices-to-kubernetes-using-docker).\n\nThis project uses Quarkus, the Supersonic Subatomic Java Framework.\n\nIf you want to learn more about Quarkus, please visit its website: \u003chttps://quarkus.io/\u003e.\n\n## Running the application in dev mode\n\nYou can run your application in dev mode that enables live coding using:\n\n```shell script\n./mvnw quarkus:dev\n```\n\n\u003e **_NOTE:_** Quarkus now ships with a Dev UI, which is available in dev mode only at \u003chttp://localhost:8080/q/dev/\u003e.\n\n## Packaging and running the application\n\nThe application can be packaged using:\n\n```shell script\n./mvnw package\n```\n\nIt produces the `quarkus-run.jar` file in the `target/quarkus-app/` directory.\nBe aware that it’s not an _über-jar_ as the dependencies are copied into the `target/quarkus-app/lib/` directory.\n\nThe application is now runnable using `java -jar target/quarkus-app/quarkus-run.jar`.\n\nIf you want to build an _über-jar_, execute the following command:\n\n```shell script\n./mvnw package -Dquarkus.package.jar.type=uber-jar\n```\n\nThe application, packaged as an _über-jar_, is now runnable using `java -jar target/*-runner.jar`.\n\n## Creating a native executable\n\nYou can create a native executable using:\n\n```shell script\n./mvnw package -Dnative\n```\n\nOr, if you don't have GraalVM installed, you can run the native executable build in a container using:\n\n```shell script\n./mvnw package -Dnative -Dquarkus.native.container-build=true\n```\n\nYou can then execute your native executable with: `./target/quarkus-demo-1.0.0-SNAPSHOT-runner`\n\nIf you want to learn more about building native executables, please consult \u003chttps://quarkus.io/guides/maven-tooling\u003e.\n\n## Provided Code\n\n### REST\n\nEasily start your REST Web Services\n\n[Related guide section...](https://quarkus.io/guides/getting-started-reactive#reactive-jax-rs-resources)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdidinj%2Fquarkus-deployment-kubernetes-docker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdidinj%2Fquarkus-deployment-kubernetes-docker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdidinj%2Fquarkus-deployment-kubernetes-docker/lists"}