{"id":24093261,"url":"https://github.com/umd-lib/iiif-static-files","last_synced_at":"2026-02-07T16:03:06.127Z","repository":{"id":54892566,"uuid":"331689614","full_name":"umd-lib/iiif-static-files","owner":"umd-lib","description":"Provides Docker image configuration for serving static iiif.lib.umd.edu files. ","archived":false,"fork":false,"pushed_at":"2025-12-10T22:46:35.000Z","size":6158,"stargazers_count":0,"open_issues_count":0,"forks_count":3,"subscribers_count":12,"default_branch":"main","last_synced_at":"2025-12-11T10:26:51.328Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","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/umd-lib.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}},"created_at":"2021-01-21T16:40:48.000Z","updated_at":"2025-12-10T22:44:39.000Z","dependencies_parsed_at":"2024-10-23T11:48:55.929Z","dependency_job_id":null,"html_url":"https://github.com/umd-lib/iiif-static-files","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/umd-lib/iiif-static-files","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/umd-lib%2Fiiif-static-files","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/umd-lib%2Fiiif-static-files/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/umd-lib%2Fiiif-static-files/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/umd-lib%2Fiiif-static-files/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/umd-lib","download_url":"https://codeload.github.com/umd-lib/iiif-static-files/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/umd-lib%2Fiiif-static-files/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29199519,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-07T14:35:27.868Z","status":"ssl_error","status_checked_at":"2026-02-07T14:25:51.081Z","response_time":63,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":[],"created_at":"2025-01-10T09:26:46.701Z","updated_at":"2026-02-07T16:03:06.110Z","avatar_url":"https://github.com/umd-lib.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# IIIF Static Files\n\nProvides a Docker image configuration for serving static iiif.lib.umd.edu\napplication files, including the Mirador viewer.\n\nThis Docker image extends umd-web-static-files by:\n\n* Adding an \"index.html\" home page\n\n* Adding static Mirador viewer files from\n[https://github.com/umd-lib/mirador-static][mirador-static]\n\n* Replacing the Nginx configuration with a configuration that proxies some\nURLs to legacy IIIF servers.\n\nSee [umd-web-static-files][umd-web-static-files] for more information about\nusing this image.\n\n**Note**: When updating the base \"umd-web-static-files\" Docker image version,\nbe sure to update the \"docker_config/nginx/conf.d/default.conf\" file to reflect\nany changes.\n\n## Docker Image\n\nTo build the Docker image:\n\n```\n\u003e docker build -t docker.lib.umd.edu/iiif-static-files:\u003cVERSION\u003e -f Dockerfile .\n```\n\nwhere \\\u003cVERSION\u003e is the version for the image.\n\nFor example, to build version 1.0.0:\n\n```\n\u003e docker build -t docker.lib.umd.edu/iiif-static-files:1.0.0 -f Dockerfile .\n```\n\nOr using dockerx:\n\n```\n\u003e docker buildx build . --builder=kube -t docker.lib.umd.edu/iiif-static-files:\u003cVERSION\u003e --push\n```\n\nThe image should then be pushed to the UMD Nexus.\n\n## Mirador Viewer\n\nMultiple versions of the Mirador viewer are included in this repository, in the\n\"html/viewer\" subdirectory.\n\nThese versions were generated from\n[https://github.com/umd-lib/mirador-static][mirador-static] as follows:\n\n1) In \"html/viewer\" directory, clone the \"mirador-static\" repository, and\nswitch into the directory:\n\n```\n\u003e cd html/viewer\n\u003e git clone git@github.com:umd-lib/mirador-static.git\n\u003e cd mirador-static\n```\n\n2) Checkout the Git tag of the version to use (where \\\u003cVERSION\u003e is the Git tag):\n\n```\n\u003e git checkout \u003cVERSION\u003e\n```\n\nFor example, for version 1.3.0:\n\n```\n\u003e git checkout 1.3.0\n```\n\n3) Delete the \".git\" subdirectory, as it is not needed, and keeping it would\nunnecessarily increase the size the Docker image:\n\n```\n\u003e rm -rf .git\n```\n\n4) Switch back to the parent directory:\n\n```\n\u003e cd ..\n```\n\n5) Rename the \"mirador-static\" subdirectory to the version number (where\n\\\u003cVERSION\u003e is the name of the version:\n\n```\n\u003e mv mirador-static \u003cVERSION\u003e\n```\n\nFor example, for version 1.3.0:\n\n```\n\u003e mv mirador-static 1.3.0\n```\n\n6) Commit the changes.\n\n---\n[mirador-static]: https://github.com/umd-lib/mirador-static\n[umd-web-static-files]: https://github.com/umd-lib/umd-web-static-files\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fumd-lib%2Fiiif-static-files","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fumd-lib%2Fiiif-static-files","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fumd-lib%2Fiiif-static-files/lists"}