{"id":51515019,"url":"https://github.com/seantrane/image-ruby-jekyll","last_synced_at":"2026-07-08T10:30:47.787Z","repository":{"id":365932865,"uuid":"1274387177","full_name":"seantrane/image-ruby-jekyll","owner":"seantrane","description":"Prebuilt Ruby-Jekyll images to improve the speed, security and reliability of dependencies when developing and publishing Jekyll websites.","archived":false,"fork":false,"pushed_at":"2026-07-07T11:08:38.000Z","size":73,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-07-07T13:03:38.961Z","etag":null,"topics":["docker","jekyll","ruby"],"latest_commit_sha":null,"homepage":"","language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"isc","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/seantrane.png","metadata":{"files":{"readme":"README.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":"CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-06-19T13:10:34.000Z","updated_at":"2026-07-07T11:08:54.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/seantrane/image-ruby-jekyll","commit_stats":null,"previous_names":["seantrane/image-ruby-jekyll"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/seantrane/image-ruby-jekyll","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seantrane%2Fimage-ruby-jekyll","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seantrane%2Fimage-ruby-jekyll/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seantrane%2Fimage-ruby-jekyll/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seantrane%2Fimage-ruby-jekyll/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/seantrane","download_url":"https://codeload.github.com/seantrane/image-ruby-jekyll/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seantrane%2Fimage-ruby-jekyll/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35262336,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-08T02:00:06.796Z","response_time":61,"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","jekyll","ruby"],"created_at":"2026-07-08T10:30:47.234Z","updated_at":"2026-07-08T10:30:47.782Z","avatar_url":"https://github.com/seantrane.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Ruby-Jekyll image\n\n\u003e Prebuilt Ruby-Jekyll images to improve the speed, security and reliability of dependencies when developing and publishing Jekyll websites.\n\n![workflows](https://img.shields.io/badge/-Workflows:-white?style=flat-square) [![Integration](https://github.com/seantrane/image-ruby-jekyll/actions/workflows/integration.yml/badge.svg)](https://github.com/seantrane/image-ruby-jekyll/actions/workflows/integration.yml) [![Delivery](https://github.com/seantrane/image-ruby-jekyll/actions/workflows/delivery.yml/badge.svg)](https://github.com/seantrane/image-ruby-jekyll/actions/workflows/delivery.yml) [![Deployment](https://github.com/seantrane/image-ruby-jekyll/actions/workflows/deployment.yml/badge.svg)](https://github.com/seantrane/image-ruby-jekyll/actions/workflows/deployment.yml)\n\n## Table of Contents\n\n- [About](#about)\n- [Usage](#usage)\n- [Support](#support)\n- [Contributing](#contributing)\n- [Changelog](#changelog)\n- [License](#license)\n\n---\n\n## About \u003ca id=\"about\"\u003e\u003c/a\u003e\n\n`image-ruby-jekyll` is used to manage prebuilt Ruby images with the [Jekyll static website generator](https://jekyllrb.com) preinstalled, along with any dependencies they require to work with each other. The Ruby version will always be pinned to highest version compatible (e.g. `3.4.9`) with the highest version of Jekyll that exists (e.g. `4.4.1`).\n\nThe only development task to perform with this repo is submit a pull-request with version changes to Ruby and/or Jekyll. If the Integration workflow succeeds, then a merge to main will trigger a new release and publish a new image. The published image is tagged with the Ruby-Jekyll versions inside it.\n\n## Usage \u003ca id=\"usage\"\u003e\u003c/a\u003e\n\nIn a `Dockerfile`:\n\n```dockerfile\nFROM ghcr.io/seantrane/image-ruby-jekyll:ruby-3.4.9_jekyll-4.4.1\n```\n\nIn a `docker-compose.yml` file:\n\n```yaml\nservices:\n  jekyll:\n    image: ghcr.io/seantrane/image-ruby-jekyll:ruby-3.4.9_jekyll-4.4.1\n    container_name: jekyll-v4.4.1\n    pull_policy: if_not_present\n    build:\n      context: .\n    env_file:\n      - ./.env\n    command: sh -c \"bundle install \u0026\u0026 bundle exec jekyll serve --watch --force_polling -H 0.0.0.0 -P 4000 || exit 1\"\n```\n\n`pull_policy: if_not_present` is used because the image tag is explicit and will never change. However, the `ghcr.io/seantrane/image-ruby-jekyll:latest` image will always refer to the latest version published, though not recommended for production usage.\n\n---\n\n## Support \u003ca id=\"support\"\u003e\u003c/a\u003e\n\n[Submit an issue](https://github.com/seantrane/image-ruby-jekyll/issues/new), in which you should provide as much detail as necessary for your issue.\n\n## Contributing \u003ca id=\"contributing\"\u003e\u003c/a\u003e\n\nContributions are always appreciated. Read [CONTRIBUTING.md](https://github.com/seantrane/image-ruby-jekyll/blob/main/CONTRIBUTING.md) documentation to learn more.\n\n## Changelog \u003ca id=\"changelog\"\u003e\u003c/a\u003e\n\nRelease details are documented in the [CHANGELOG.md](https://github.com/seantrane/image-ruby-jekyll/blob/main/CHANGELOG.md) file, and on the [GitHub Releases page](https://github.com/seantrane/image-ruby-jekyll/releases).\n\n---\n\n## License \u003ca id=\"license\"\u003e\u003c/a\u003e\n\n[ISC License](https://github.com/seantrane/image-ruby-jekyll/blob/main/LICENSE)\n\nCopyright (c) 2026 [Sean Trane Sciarrone](https://github.com/seantrane)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fseantrane%2Fimage-ruby-jekyll","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fseantrane%2Fimage-ruby-jekyll","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fseantrane%2Fimage-ruby-jekyll/lists"}