{"id":16284428,"url":"https://github.com/nuest/interimage-container","last_synced_at":"2026-01-21T04:10:59.823Z","repository":{"id":146971337,"uuid":"52429021","full_name":"nuest/interimage-container","owner":"nuest","description":"A Docker image for the image analysis tool InterIMAGE","archived":false,"fork":false,"pushed_at":"2016-06-07T12:43:13.000Z","size":20,"stargazers_count":0,"open_issues_count":1,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-09T00:04:54.681Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nuest.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"COPYING","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":"2016-02-24T09:10:11.000Z","updated_at":"2016-09-14T06:40:53.000Z","dependencies_parsed_at":null,"dependency_job_id":"a9a88168-1cdb-491d-97e7-a786f6aaac84","html_url":"https://github.com/nuest/interimage-container","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/nuest/interimage-container","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nuest%2Finterimage-container","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nuest%2Finterimage-container/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nuest%2Finterimage-container/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nuest%2Finterimage-container/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nuest","download_url":"https://codeload.github.com/nuest/interimage-container/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nuest%2Finterimage-container/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28625931,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-21T02:47:06.670Z","status":"ssl_error","status_checked_at":"2026-01-21T02:45:44.886Z","response_time":86,"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":[],"created_at":"2024-10-10T19:19:31.317Z","updated_at":"2026-01-21T04:10:59.791Z","avatar_url":"https://github.com/nuest.png","language":null,"readme":"# A Docker image for InterIMAGE\n\n[![DOI](https://zenodo.org/badge/doi/10.5281/zenodo.55083.svg)](http://dx.doi.org/10.5281/zenodo.55083)\n\nThese Dockerfiles are based on the InterIMAGE installation instructions on Ubuntu: http://www.lvc.ele.puc-rio.br/projects/interimage/download/files/install_interimage_ubuntu.txt\n\n## 1.43\n\n**Status:** The instructions linked above are not transferable directly to the latest source code.\n\n### Build and run\n\nTo execute the container, install Docker and open a command prompt in the directory `/1.27`. Then build the container with\n\n`docker build -t interimage/143 .`\n\nand start it with\n\n`docker run -it --user interimage interimage/143`\n\n\n## 1.27\n\n**Status:** Based on the existing Linux download of InterIMAGE, the Dockerfile successfully downloads and compiles InterIMAGE and the required binaries.\n\n### Build and run\n\nTo execute the container, install Docker and open a command prompt in the directory `/1.27`. Then build the container with\n\n`docker build -t interimage/1.27 .`\n\nand start it with\n\n`docker run -it --user interimage interimage/1.27`\n\n(To remove the image directly after, add the `--rm` flag.)\n\nThis opens a bash prompt. Interimage is can be started with the following command (the image should start in the directory `cd /home/interimage/InterIMAGE_Source_1.27/bin`, if not, cd there).\n\n```\n./interimage\n```\n\n\n### Build and run with UI\n\n(Based on https://hub.docker.com/r/toddstavish/orfeo_toolbox/ and https://github.com/adrienandrem/interimage-docker/blob/1.27/Makefile)\n\nBackground on GUI applications in Docker:\n* http://fabiorehm.com/blog/2014/09/11/running-gui-apps-with-docker/\n* http://wiki.ros.org/docker/Tutorials/GUI\n* On Linux, we simply forward our X11 info with the Docker container. **This is a potential security risk** because the container can receive all X11 events that happen on the host computer desktop ([via](http://fabiorehm.com/blog/2014/09/11/running-gui-apps-with-docker/#comment-1625694548)).\n\n```\nxhost +\ndocker run -it --rm -v /tmp/.X11-unix:/tmp/.X11-unix -e DISPLAY=unix$DISPLAY -e uid=$(id -u) -e gid=$(id -g) -v /\u003cpath to workdir\u003e:/home/data interimage/1.27 ./interimage\nxhost -\n```\n\n\n### Development\n\n* `docker build .`\n* `docker run -it --rm \u003cimageid\u003e`\n\n\n### Image content\n\nThe image has a user `interimage` which should be used to run analysis in the container if you have security considerations.\n\nThe downloads and built libraries are in the directory `home/interimage`:\n\n```\nroot@a096be168745:/home/interimage# ll\ntotal 154516\ndrwxr-xr-x 11 interimage interimage      4096 Feb 24 08:55 ./\ndrwxr-xr-x  8 root       root            4096 Feb 24 08:55 ../\ndrwx------ 29 interimage interimage      4096 Feb 24 08:55 InterIMAGE_Source_1.27/\ndrwx------  4 interimage interimage      4096 Feb 24 08:30 bin_1.27/\n-rw-r--r--  1 root       root       158198233 Feb 22 16:34 interimage-src.tar.gz\ndrwx------  8 interimage interimage      4096 Feb 24 08:29 ta_operators/\ndrwx------  6 interimage interimage      4096 Feb 24 08:26 terralib_cvs/\n\n```\n\n\n## License\n\nCopyright (C) 2016 Daniel Nüst\n\nThis program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation, either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see \u003chttp://www.gnu.org/licenses/\u003e.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnuest%2Finterimage-container","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnuest%2Finterimage-container","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnuest%2Finterimage-container/lists"}