{"id":15134476,"url":"https://github.com/damintsew/idea-shared-index-dockerfile","last_synced_at":"2025-08-20T18:59:58.636Z","repository":{"id":38832935,"uuid":"418816770","full_name":"damintsew/idea-shared-index-dockerfile","owner":"damintsew","description":"Dockerfile to generate Intellij Idea project shared index","archived":false,"fork":false,"pushed_at":"2022-06-02T09:57:13.000Z","size":33,"stargazers_count":10,"open_issues_count":4,"forks_count":1,"subscribers_count":1,"default_branch":"develop","last_synced_at":"2025-07-15T01:19:44.761Z","etag":null,"topics":["docker","goland","intellij-idea","pproject-shared-index"],"latest_commit_sha":null,"homepage":"","language":"Shell","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/damintsew.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}},"created_at":"2021-10-19T07:29:03.000Z","updated_at":"2023-02-16T07:26:53.000Z","dependencies_parsed_at":"2022-08-26T20:02:29.572Z","dependency_job_id":null,"html_url":"https://github.com/damintsew/idea-shared-index-dockerfile","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/damintsew/idea-shared-index-dockerfile","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/damintsew%2Fidea-shared-index-dockerfile","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/damintsew%2Fidea-shared-index-dockerfile/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/damintsew%2Fidea-shared-index-dockerfile/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/damintsew%2Fidea-shared-index-dockerfile/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/damintsew","download_url":"https://codeload.github.com/damintsew/idea-shared-index-dockerfile/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/damintsew%2Fidea-shared-index-dockerfile/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271369331,"owners_count":24747793,"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","status":"online","status_checked_at":"2025-08-20T02:00:09.606Z","response_time":69,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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","goland","intellij-idea","pproject-shared-index"],"created_at":"2024-09-26T05:21:20.929Z","updated_at":"2025-08-20T18:59:58.573Z","avatar_url":"https://github.com/damintsew.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# idea-shared-index-dockerfile\n\n[![Idea Docker images build](https://github.com/damintsew/idea-shared-index-dockerfile/actions/workflows/idea_release_build_and_push.yml/badge.svg?branch=master)](https://github.com/damintsew/idea-shared-index-dockerfile/actions/workflows/idea_release_build_and_push.yml)\n[![Goland Docker images build](https://github.com/damintsew/idea-shared-index-dockerfile/actions/workflows/go_master_build_and_push.yml/badge.svg?branch=master)](https://github.com/damintsew/idea-shared-index-dockerfile/actions/workflows/go_master_build_and_push.yml)\n\nThe repository contains Dockerfile for building Intellij Idea images that will be used for generating **project** shared indexes \nby `dump-shared-index project` command.\n\n\n# Run parameters\nTo build shared indexes you have to provide properties `PROJECT_ID`, `COMMIT_ID` map source directory and directory with the resuls.\nWhere: \n- `COMMIT_ID` will be used by Idea to find an appropriate index.\n- `PROJECT_ID` should be the unique Id of the project the same that in `intellij.yaml`.\n- Map source folder. Internally there is `IDEA_PROJECT_DIR` which is hardcoded to `/var/project` and should be mapped by `docker volumes`\n- Map folder with the results of generating indexes. Internally is hardcoded to `/shared-index/output` and should be mapped by `docker volumes`\n\n\n# How to use\n\n1. Download image `docker pull damintsew/idea-indexer-2021.3`.\n2. Run image `docker run -v YOUR_PROJECT_DIR:/var/project -v GENERATED_OUTPUD_DIR:/shared-index/output \n-e COMMIT_ID=\u003cfull commit hash\u003e -e PROJECT_ID=\u003cproject name\u003e` \n\nFor example: //todo \n\n# How to build\n```\nINTELLIJ_VERSION=\u003cversion\u003e\ndocker build . --build-arg INTELLIJ_VERSION=${INTELLIJ_VERSION} -t damintsew/idea-indexer-${INTELLIJ_VERSION}\n```\nCurrently, there are several docker images for different Intellij Idea versions:\n\n| Intellij Idea Version. Image tag: damintsew/idea-indexer-${version}                   | Goland Idea version. Image tag: damintsew/goland-indexer-${version}                     |\n|:---------------------------------------------------------------------------------|-------------------------------------------------------------------------------------|\n|                                                                                  | [2021.3.2](https://hub.docker.com/repository/docker/damintsew/goland-indexer-2021.3.2]) |\n| [2021.3.1](https://hub.docker.com/repository/docker/damintsew/idea-indexer-2021.3.1]) | [2021.3.1](https://hub.docker.com/repository/docker/damintsew/goland-indexer-2021.3.1]) |\n| [2021.3](https://hub.docker.com/repository/docker/damintsew/idea-indexer-2021.3])     | [2021.2.3](https://hub.docker.com/repository/docker/damintsew/goland-indexer-2021.2.3]) |\n| [2021.2.3](https://hub.docker.com/repository/docker/damintsew/idea-indexer-2021.2.3]) | [2021.2.2](https://hub.docker.com/repository/docker/damintsew/goland-indexer-2021.2.2]) |\n| [2021.2.2](https://hub.docker.com/repository/docker/damintsew/idea-indexer-2021.2.2]) | [2021.1.1](https://hub.docker.com/repository/docker/damintsew/goland-indexer-2021.2.1]) |\n| [2021.2.1](https://hub.docker.com/repository/docker/damintsew/idea-indexer-2021.2.1]) |                                                                                     |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdamintsew%2Fidea-shared-index-dockerfile","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdamintsew%2Fidea-shared-index-dockerfile","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdamintsew%2Fidea-shared-index-dockerfile/lists"}