{"id":23642062,"url":"https://github.com/callassoftware/docker-snippets","last_synced_at":"2026-05-09T04:30:51.510Z","repository":{"id":266718150,"uuid":"897890664","full_name":"callassoftware/docker-snippets","owner":"callassoftware","description":"some docker related snippets and howtos for callas pdfToolbox-cli","archived":false,"fork":false,"pushed_at":"2026-05-04T13:55:10.000Z","size":137,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-05-04T15:40:52.524Z","etag":null,"topics":["docker","linux","pdf","shell"],"latest_commit_sha":null,"homepage":"https://hub.docker.com/repository/docker/callassoftware/pdftoolbox-cli","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/callassoftware.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2024-12-03T12:24:24.000Z","updated_at":"2026-05-04T13:59:29.000Z","dependencies_parsed_at":"2026-01-06T05:06:17.556Z","dependency_job_id":null,"html_url":"https://github.com/callassoftware/docker-snippets","commit_stats":null,"previous_names":["callassoftware/docker-snippets"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/callassoftware/docker-snippets","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/callassoftware%2Fdocker-snippets","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/callassoftware%2Fdocker-snippets/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/callassoftware%2Fdocker-snippets/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/callassoftware%2Fdocker-snippets/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/callassoftware","download_url":"https://codeload.github.com/callassoftware/docker-snippets/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/callassoftware%2Fdocker-snippets/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32807121,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-08T08:22:46.396Z","status":"online","status_checked_at":"2026-05-09T02:00:06.633Z","response_time":123,"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","linux","pdf","shell"],"created_at":"2024-12-28T10:39:09.993Z","updated_at":"2026-05-09T04:30:51.505Z","avatar_url":"https://github.com/callassoftware.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# docker-snippets\nsome docker related snippets and howtos mainly for the pdfToolbox-cli\n\n\u003e note: docker-snippets for other callas products (pdfaPilot, pdfChip) can be found inside the 'other' subdirectory\n\n## ready to use docker images on Dockerhub\nplease see also our ready-to-use docker images on https://hub.docker.com/repository/docker/callassoftware/pdftoolbox-cli\n\n```\ndocker pull callassoftware/pdftoolbox-cli\n```\nrun preflight using the sample.kfpx/sample.pdf contained in the image\n```\ndocker run --rm -ti callassoftware/pdftoolbox-cli ./pdfToolbox sample.kfpx sample.pdf -o=/tmp/output.pdf --licenseserver=\u003cip of a callas license server\u003e\n```\n\n## howto create your own docker images\n\nassumption: there is a linux image build machine with the needed tools already installed (such as git, wget, tar, docker etc.)\n\n### download pdfToolbox locally\n```\ngit clone https://github.com/callassoftware/docker-snippets.git\ncd docker-snippets\nwget https://www.callassoftware.com/extranet/callas_pdfToolboxCLIandServer/callas_pdfToolboxCLI_x64_Linux_17-0-682.tar.gz\ntar zxvpf callas_pdfToolboxCLI_x64_Linux_17-0-682.tar.gz\nmv callas_pdfToolboxCLI_x64_Linux_17-0-682 callas_pdfToolboxCLI_Linux_17-0-682\nrm callas_pdfToolboxCLI_Linux_17-0-682/lib/libstdc++.so.6   # only needed for older debian distros (but not for debian trixie)\n```\n\n### optional: reduce resulting image size\nBefore building the image, you can optionally reduce its size by removing pdfToolbox components that aren't needed for your specific use case. This allows you to create a smaller \"essential\" image.\n\n```\ncd callas_pdfToolboxCLI_Linux_17-0-682\nbash ../reduce-essential.sh\ncd ..\n```\n\n### build the image\n```\ndocker build -t callassoftware/pdftoolbox-cli:v17-0-682 -f Dockerfile-debian .\n```\n\n## ... try it out ...\n\n```\ndocker run --rm -ti callassoftware/pdftoolbox-cli:v17-0-682 ./pdfToolbox --version\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcallassoftware%2Fdocker-snippets","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcallassoftware%2Fdocker-snippets","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcallassoftware%2Fdocker-snippets/lists"}