{"id":32474929,"url":"https://github.com/naoigcat/docker-imagemagick","last_synced_at":"2026-05-17T19:34:52.298Z","repository":{"id":161382844,"uuid":"607308793","full_name":"naoigcat/docker-imagemagick","owner":"naoigcat","description":"Docker Image for ImageMagick","archived":false,"fork":false,"pushed_at":"2026-04-22T00:48:09.000Z","size":33,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-04-22T02:41:50.100Z","etag":null,"topics":["docker","docker-image","dockerfile","dockerhub","imagemagick"],"latest_commit_sha":null,"homepage":"","language":"Dockerfile","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/naoigcat.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-02-27T18:25:34.000Z","updated_at":"2026-04-22T00:48:12.000Z","dependencies_parsed_at":"2023-12-26T01:29:13.115Z","dependency_job_id":"e6845745-f77a-450c-bd4e-37e327129521","html_url":"https://github.com/naoigcat/docker-imagemagick","commit_stats":null,"previous_names":[],"tags_count":68,"template":false,"template_full_name":null,"purl":"pkg:github/naoigcat/docker-imagemagick","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/naoigcat%2Fdocker-imagemagick","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/naoigcat%2Fdocker-imagemagick/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/naoigcat%2Fdocker-imagemagick/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/naoigcat%2Fdocker-imagemagick/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/naoigcat","download_url":"https://codeload.github.com/naoigcat/docker-imagemagick/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/naoigcat%2Fdocker-imagemagick/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33151849,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-17T09:28:26.183Z","status":"ssl_error","status_checked_at":"2026-05-17T09:27:52.702Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["docker","docker-image","dockerfile","dockerhub","imagemagick"],"created_at":"2025-10-26T20:15:51.614Z","updated_at":"2026-05-17T19:34:52.293Z","avatar_url":"https://github.com/naoigcat.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Docker ImageMagick\n\n[![Docker Builds](https://github.com/naoigcat/docker-imagemagick/actions/workflows/push.yml/badge.svg)](https://github.com/naoigcat/docker-imagemagick/actions/workflows/push.yml)\n\n[![GitHub Stars](https://img.shields.io/github/stars/naoigcat/docker-imagemagick.svg)](https://github.com/naoigcat/docker-imagemagick/stargazers)\n[![Docker Pulls](https://img.shields.io/docker/pulls/naoigcat/imagemagick)](https://hub.docker.com/r/naoigcat/imagemagick)\n\n**Docker Image for [ImageMagick](https://imagemagick.org/index.php)**\n\n## Installation\n\n```sh\ndocker pull naoigcat/imagemagick\n```\n\n## Security\n\n-   The image runs as an unprivileged user by default.\n-   The Debian base image is pinned by digest to reduce supply-chain drift.\n-   ImageMagick remote URL delegates and indirect file reads are disabled in the bundled policy.\n-   CI publishes SBOM and provenance attestations and runs scheduled vulnerability scans.\n\n## Usage\n\nSee [imagemagick](https://imagemagick.org/index.php) for available commands.\n\n```sh\ndocker run --rm -v \"$PWD\":/app naoigcat/imagemagick identify image.png\n```\n\nIt is recommended to create an alias:\n\n```sh\nalias imagemagick='docker run --rm -v \"$PWD\":/app naoigcat/imagemagick'\n```\n\nIf you need files in the mounted directory to be owned by the host user, override the container user explicitly.\n\n```sh\ndocker run --rm --user \"$(id -u)\":\"$(id -g)\" -v \"$PWD\":/app naoigcat/imagemagick identify image.png\n```\n\n## Using in GitHub Actions\n\nYou can use this Docker image in your GitHub Actions workflows to process images during CI/CD.\n\n### Basic Example\n\n```yaml\nname: Process Image\n\non: [push]\n\njobs:\n  generate:\n    runs-on: ubuntu-latest\n    container:\n      image: naoigcat/imagemagick:latest\n    steps:\n      - name: Checkout code\n        uses: actions/checkout@v6\n\n      - name: Create sample image\n        run: magick -size 200x100 xc:white -gravity center -pointsize 24 -annotate 0 'Sample' output.jpg\n\n      - name: Upload sample image\n        uses: actions/upload-artifact@v4\n        with:\n          name: image\n          path: output.jpg\n```\n\n### Using with docker run\n\nAlternatively, you can use the image with `docker run` in your workflow:\n\n```yaml\nname: Process Image\n\non: [push]\n\njobs:\n  process:\n    runs-on: ubuntu-latest\n    steps:\n      - name: Checkout code\n        uses: actions/checkout@v6\n\n      - name: Create sample image\n        run: |\n          docker run --rm --user \"$(id -u)\":\"$(id -g)\" -v \"$PWD\":/app naoigcat/imagemagick \\\n            magick -size 200x100 xc:white -gravity center -pointsize 24 -annotate 0 'Sample' output.jpg\n\n      - name: Upload sample image\n        uses: actions/upload-artifact@v4\n        with:\n          name: image\n          path: output.jpg\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnaoigcat%2Fdocker-imagemagick","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnaoigcat%2Fdocker-imagemagick","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnaoigcat%2Fdocker-imagemagick/lists"}