{"id":15027669,"url":"https://github.com/suntorytimed/resourcespace","last_synced_at":"2025-10-03T23:32:50.044Z","repository":{"id":57791676,"uuid":"163956366","full_name":"suntorytimed/resourcespace","owner":"suntorytimed","description":"Docker image for ResourceSpace based on ubuntu:latest including openCV, poppler, php8.1 and php-mysqlnd","archived":true,"fork":false,"pushed_at":"2024-01-31T10:03:03.000Z","size":70,"stargazers_count":20,"open_issues_count":3,"forks_count":11,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-01-18T21:03:53.124Z","etag":null,"topics":["docker","docker-compose","docker-image","opencv","php81","poppler","resourcespace","resourcespace-docker","ubuntu","ubuntu2004"],"latest_commit_sha":null,"homepage":"","language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"eupl-1.2","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/suntorytimed.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2019-01-03T10:09:52.000Z","updated_at":"2024-10-25T08:46:29.000Z","dependencies_parsed_at":"2024-01-31T11:27:04.231Z","dependency_job_id":"eefde079-987b-4838-9445-d2b4c51f394a","html_url":"https://github.com/suntorytimed/resourcespace","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/suntorytimed%2Fresourcespace","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/suntorytimed%2Fresourcespace/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/suntorytimed%2Fresourcespace/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/suntorytimed%2Fresourcespace/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/suntorytimed","download_url":"https://codeload.github.com/suntorytimed/resourcespace/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":235204448,"owners_count":18952326,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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-compose","docker-image","opencv","php81","poppler","resourcespace","resourcespace-docker","ubuntu","ubuntu2004"],"created_at":"2024-09-24T20:06:52.560Z","updated_at":"2025-10-03T23:32:44.790Z","avatar_url":"https://github.com/suntorytimed.png","language":"Dockerfile","readme":"# Announcement\nAs I don't have time to continue maintaining this container and resolving issues, I will have to announce the EOL of this container with the next version 10.3 of ResourceSpace.\n\nI never expected others to use this container for their deployments of ResourceSpace. For myself, it was just a side project to run my instance in a container instead of bare metal. But I stopped using ResourceSpace quite some time ago and meanwhile switched to using PhotoPrism® for several reasons:\n\n- actual development community fostering collaboration and not just one company maintaining the project on an SVN server\n- solid and more modern code base\n- transparent roadmap, issues and communication channels\n- AI functionality better suited for personal use\n- intuitive UI\n\nAnd since PhotoPrism can offer me the one killer feature I began using ResourceSpace for (stacking different versions of the same photo with JPEG and RAW sharing one entity) I don't see a benefit in ResourceSpace for my personal use case.\n\nIf anybody wants to step up and take over the maintenance, please do so. As with every Open Source project you are free to fork and continue using the codebase. I will put the repository on archived after the release of the last 10.3 container.\n\n# resourcespace-docker\n\n[![Docker Pulls](https://img.shields.io/docker/pulls/suntorytimed/resourcespace?style=flat-square)](https://hub.docker.com/r/suntorytimed/resourcespace)\n\nA docker image for ResourceSpace based on Ubuntu:latest container including OpenCV, poppler and php8.1.\n\nPlease report any issues on GitHub: https://github.com/suntorytimed/resourcespace-docker/issues\n\n## docker-compose example\n\nIn this example I use a pre-existing nginx proxy using the [nginx-proxy/acme-companion](https://github.com/nginx-proxy/acme-companion) container, which includes a Let's Encrypt/ACME companion to enforce a properly signed https. Please consult the documentation of that container for setup instructions.\n\n```Dockerfile\nversion: \"2\"\n\n# frontend network for resourcespace using an already existing nginx proxy for Let's Encrypt\n# backend network without public accessibility for the database connection\nnetworks:\n  frontend:\n    external:\n      name: acme-proxy-network\n  backend:\n\n# Trying to use bind volumes directly resulted in a 500 error, but using named volumes worked  \nvolumes:\n  mariadb:\n  include:\n  filestore:\n\nservices:\n  resourcespace:\n    image: suntorytimed/resourcespace:latest\n    restart: unless-stopped\n    # links resourcespace to mariadb container and makes it accessible via the URL mariadb\n    depends_on:\n      - mariadb-resourcespace\n    volumes:\n      - include:/var/www/resourcespace/include\n      - filestore:/var/www/resourcespace/filestore\n    # variables for setting up https via the Let's Encrypt/ACME companion\n    environment:\n      - HOSTNAME=dam.example.com\n      - VIRTUAL_HOST=dam.example.com\n      - VIRTUAL_PORT=80\n      - LETSENCRYPT_HOST=dam.example.com\n      - LETSENCRYPT_EMAIL=admin@example.com\n    # public and private network\n    networks:\n      - frontend\n      - backend\n    # no port bind necessary due to the nginx proxy\n    expose:\n      - 80\n  \n  mariadb-resourcespace:\n    image: mariadb\n    restart: unless-stopped\n    # env file containing the db configuration\n    env_file:\n      - db.env\n    volumes:\n      - mariadb:/var/lib/mysql\n    # only accesible in private network\n    networks:\n      - backend\n```\n\nWhen using this example, you need to enter `mariadb-resourcespace` as the URL for the database in the initial ResourceSpace setup. You will also have to provide a db.env file in the same folder as your docker-compose.yml:\n\n```\nMYSQL_PASSWORD=secure-password\nMYSQL_ROOT_PASSWORD=even-more-secure.password\nMYSQL_DATABASE=resourcespace\nMYSQL_USER=resourcespace\n```\n\nWith this db.env file you set up your mariadb database for ResourceSpace. You will have to enter the login data in the initial ResourceSpace setup. The MySQL binary path in that setup needs to be empty, as ResourceSpace won't be using a local mysql/mariadb installation.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsuntorytimed%2Fresourcespace","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsuntorytimed%2Fresourcespace","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsuntorytimed%2Fresourcespace/lists"}