{"id":14982929,"url":"https://github.com/dhrupad17/springboot3-with-spring-6","last_synced_at":"2026-02-09T11:32:26.092Z","repository":{"id":252668306,"uuid":"841088541","full_name":"dhrupad17/SpringBoot3-with-Spring-6","owner":"dhrupad17","description":"This is a Practice Repository for my Spring Boot revision from Telusko's recent course.","archived":false,"fork":false,"pushed_at":"2024-09-07T05:54:02.000Z","size":463,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-02T04:11:22.103Z","etag":null,"topics":["spring-aop","spring-boot","spring-data-jpa","spring-jdbc","spring-mvc","spring-security"],"latest_commit_sha":null,"homepage":"","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/dhrupad17.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}},"created_at":"2024-08-11T15:55:01.000Z","updated_at":"2024-09-07T05:54:05.000Z","dependencies_parsed_at":"2024-08-11T17:29:41.861Z","dependency_job_id":"f1fda79e-3fde-42fe-9493-12468b96c9ce","html_url":"https://github.com/dhrupad17/SpringBoot3-with-Spring-6","commit_stats":null,"previous_names":["dhrupad17/springboot3-with-spring-6"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dhrupad17%2FSpringBoot3-with-Spring-6","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dhrupad17%2FSpringBoot3-with-Spring-6/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dhrupad17%2FSpringBoot3-with-Spring-6/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dhrupad17%2FSpringBoot3-with-Spring-6/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dhrupad17","download_url":"https://codeload.github.com/dhrupad17/SpringBoot3-with-Spring-6/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238874320,"owners_count":19545163,"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":["spring-aop","spring-boot","spring-data-jpa","spring-jdbc","spring-mvc","spring-security"],"created_at":"2024-09-24T14:06:26.725Z","updated_at":"2026-02-09T11:32:26.041Z","avatar_url":"https://github.com/dhrupad17.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Docker Commands Used in this repository\n\n\n### 1. `docker --version`\n- **Description:** Displays the installed version of Docker.\n\n### 2. `docker ps`\n- **Description:** Lists all running containers.\n\n### 3. `docker ps -a`\n- **Description:** Lists all containers, including running, stopped, and exited ones.\n\n### 4. `docker images`\n- **Description:** Lists all Docker images that are currently available on your local system.\n\n### 5. `docker help`\n- **Description:** Provides a list of commands or help on a specific command if specified.\n\n### 6. `docker rm \u003ccontainerId\u003e`\n- **Description:** Removes the specified container using its ID. The container must be stopped before it can be removed.\n\n### 7. `docker create hello-world`\n- **Description:** Creates a container from the `hello-world` image but does not start it.\n\n### 8. `docker search hello-world`\n- **Description:** Searches the Docker Hub for images with the name `hello-world`.\n\n### 9. `docker pull hello-world`\n- **Description:** Pulls the `hello-world` image from Docker Hub to your local machine.\n\n### 10. `docker search openjdk`\n- **Description:** Searches the Docker Hub for images with the name `openjdk`.\n\n### 11. `docker pull openjdk:22-jdk`\n- **Description:** Pulls the specific `22-jdk` tag of the `openjdk` image from Docker Hub.\n\n### 12. `docker run -it openjdk:22-jdk`\n- **Description:** Runs a container from the `openjdk:22-jdk` image interactively with a terminal session attached.\n\n### 13. `docker build \u003crepository-name\u003e/\u003cProject-Name\u003e`\n- **Description:** Builds a Docker image from a specified repository and project name. This command must be run in the directory where the Dockerfile is located.\n\n### 14. `docker-compose up --build`\n- **Description:** Builds, creates, starts, and attaches to containers for a service defined in a `docker-compose.yml` file, rebuilding the images if necessary.\n\n### 15. `docker-compose down`\n- **Description:** Stops and removes all containers, networks, and images created by `docker-compose up`.\n\n---\n\n# Git Commands Used in this repository\n\n### 1. `git init`\n- **Description:** Initializes a new Git repository in the current directory. This creates a `.git` directory to track versions and changes.\n\n### 2. `git add .`\n- **Description:** Stages all the changes (new files, modifications, deletions) in the current directory and its subdirectories for the next commit.\n\n### 3. `git commit -m \"Commit Message\"`\n- **Description:** Commits the staged changes with a descriptive message. The message should summarize the changes made in that commit.\n\n### 4. `git status`\n- **Description:** Displays the current status of the working directory and staging area. It shows which files are modified, staged, or untracked.\n\n### 5. `git pull origin main`\n- **Description:** Fetches the latest changes from the remote repository’s `main` branch and merges them into the current branch.\n\n### 6. `git push origin main`\n- **Description:** Pushes the committed changes from your local `main` branch to the remote repository’s `main` branch.\n\n### 7. `git branch -m master main`\n- **Description:** Renames the current branch from `master` to `main`. This is commonly used when switching the default branch name.\n\n### 8. `git pull origin \u003cbranch-name\u003e --rebase`\n- **Description:** Fetches the latest changes from the specified remote branch and applies them on top of your current branch’s commits. This avoids creating unnecessary merge commits.\n\n### 9. `git rebase --continue`\n- **Description:** Continues the rebase process after resolving any conflicts. This command is used when a rebase is interrupted by conflicts and those conflicts have been resolved.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdhrupad17%2Fspringboot3-with-spring-6","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdhrupad17%2Fspringboot3-with-spring-6","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdhrupad17%2Fspringboot3-with-spring-6/lists"}