{"id":18746078,"url":"https://github.com/fscm/docker-rockylinux","last_synced_at":"2025-09-01T06:33:09.497Z","repository":{"id":47959796,"uuid":"381675081","full_name":"fscm/docker-rockylinux","owner":"fscm","description":"Docker recipe to build a Rocky GNU/Linux image","archived":false,"fork":false,"pushed_at":"2022-07-21T15:42:23.000Z","size":18,"stargazers_count":5,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-02T11:48:58.048Z","etag":null,"topics":["docker","docker-image","dockerfile","rocky-linux","rockylinux"],"latest_commit_sha":null,"homepage":"","language":"Dockerfile","has_issues":false,"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/fscm.png","metadata":{"files":{"readme":"README.build.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-06-30T11:15:02.000Z","updated_at":"2024-04-14T05:21:28.000Z","dependencies_parsed_at":"2022-08-12T15:10:56.399Z","dependency_job_id":null,"html_url":"https://github.com/fscm/docker-rockylinux","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/fscm/docker-rockylinux","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fscm%2Fdocker-rockylinux","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fscm%2Fdocker-rockylinux/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fscm%2Fdocker-rockylinux/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fscm%2Fdocker-rockylinux/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fscm","download_url":"https://codeload.github.com/fscm/docker-rockylinux/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fscm%2Fdocker-rockylinux/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273082416,"owners_count":25042282,"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-09-01T02:00:09.058Z","response_time":120,"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","docker-image","dockerfile","rocky-linux","rockylinux"],"created_at":"2024-11-07T16:20:49.935Z","updated_at":"2025-09-01T06:33:08.078Z","avatar_url":"https://github.com/fscm.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Rocky Linux for Docker\n\nDocker image with Rocky GNU/Linux.\n\n## Synopsis\n\nThis is a set of scripts designed to create Docker images with Rocky GNU/Linux.\n\nThe Docker images resulting from these scripts should be the ones used to\ninstantiate a Rocky Linux container.\n\n## Getting Started\n\nThere are a couple of things needed for the script to work.\n\n### Prerequisites\n\nDocker, either the Community Edition (CE) or Enterprise Edition (EE), needs to\nbe installed on your local computer.\n\n#### Docker\n\nDocker installation instructions can be found\n[here](https://docs.docker.com/install/).\n\n### Usage\n\nIn order to create a Docker image using this Dockerfiles you need to run the\n`docker` command with a few options.\n\n```shell\ndocker image build --force-rm --no-cache --progress plain --file \u003cVARIANT\u003e/Dockerfile --tag \u003cUSER\u003e/\u003cIMAGE\u003e:\u003cTAG\u003e \u003cPATH\u003e\n```\n\n- `\u003cUSER\u003e` - *[required]* The user that will own the container image (e.g.: \"johndoe\").\n- `\u003cIMAGE\u003e` - *[required]* The container name (e.g.: \"rockylinux\").\n- `\u003cTAG\u003e` - *[required]* The container tag (e.g.: \"latest\").\n- `\u003cPATH\u003e` - *[required]* The location of the Dockerfile folder.\n- `\u003cVARIANT\u003e` - *[required]* The variant that is being build (`rockylinux8`).\n\nA build example:\n\n```shell\ndocker image build --force-rm --no-cache --progress plain --file centos8-stream/Dockerfile --tag johndoe/my_rockylinux:8 .\n```\n\nTo clean any _`none`_ image(s) left by the build process the following\ncommand can be used:\n\n```shell\ndocker image rm `docker image ls --filter \"dangling=true\" --quiet`\n```\n\nYou can also use the following command to achieve the same result:\n\n```shell\ndocker image prune -f\n```\n\n### Add Tags to the Docker Image\n\nAdditional tags can be added to the image using the following command:\n\n```shell\ndocker image tag \u003cimage_id\u003e \u003cuser\u003e/\u003cimage\u003e:\u003cextra_tag\u003e\n```\n\n### Push the image to Docker Hub\n\nAfter adding an image to Docker, that image can be pushed to a Docker\nregistry... Like Docker Hub.\n\nMake sure that you are logged in to the service.\n\n```shell\ndocker login\n```\n\nWhen logged in, an image can be pushed using the following command:\n\n```shell\ndocker image push \u003cuser\u003e/\u003cimage\u003e:\u003ctag\u003e\n```\n\nExtra tags can also be pushed.\n\n```shell\ndocker image push \u003cuser\u003e/\u003cimage\u003e:\u003cextra_tag\u003e\n```\n\n## Contributing\n\n1. Fork it!\n2. Create your feature branch: `git checkout -b my-new-feature`\n3. Commit your changes: `git commit -am 'Add some feature'`\n4. Push to the branch: `git push origin my-new-feature`\n5. Submit a pull request\n\nPlease read the [CONTRIBUTING.md](CONTRIBUTING.md) file for more details on how\nto contribute to this project.\n\n## Versioning\n\nThis project uses [SemVer](http://semver.org/) for versioning. For the versions\navailable, see the [tags on this repository](https://github.com/fscm/docker-rockylinux/tags).\n\n## Authors\n\n- **Frederico Martins** - [fscm](https://github.com/fscm)\n\nSee also the list of [contributors](https://github.com/fscm/docker-rockylinux/contributors)\nwho participated in this project.\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE)\nfile for details\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffscm%2Fdocker-rockylinux","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffscm%2Fdocker-rockylinux","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffscm%2Fdocker-rockylinux/lists"}