{"id":45965025,"url":"https://github.com/dav-idka-j/docker-gelrss","last_synced_at":"2026-02-28T14:07:59.618Z","repository":{"id":337220853,"uuid":"1137041971","full_name":"dav-idka-j/docker-gelrss","owner":"dav-idka-j","description":"Dockerized Gelrss","archived":false,"fork":false,"pushed_at":"2026-02-08T11:59:37.000Z","size":17,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-08T18:05:36.404Z","etag":null,"topics":["docker","gelbooru","rss"],"latest_commit_sha":null,"homepage":"","language":"Dockerfile","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/dav-idka-j.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,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-01-18T20:06:46.000Z","updated_at":"2026-02-08T12:12:35.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/dav-idka-j/docker-gelrss","commit_stats":null,"previous_names":["dav-idka-j/docker-gelrss"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/dav-idka-j/docker-gelrss","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dav-idka-j%2Fdocker-gelrss","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dav-idka-j%2Fdocker-gelrss/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dav-idka-j%2Fdocker-gelrss/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dav-idka-j%2Fdocker-gelrss/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dav-idka-j","download_url":"https://codeload.github.com/dav-idka-j/docker-gelrss/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dav-idka-j%2Fdocker-gelrss/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29936679,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-28T13:49:17.081Z","status":"ssl_error","status_checked_at":"2026-02-28T13:48:50.396Z","response_time":90,"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":["docker","gelbooru","rss"],"created_at":"2026-02-28T14:07:59.191Z","updated_at":"2026-02-28T14:07:59.609Z","avatar_url":"https://github.com/dav-idka-j.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Gelrss Docker\n\nThis project provides a way to run [Gelrss](https://github.com/dav-idka-j/Gelrss) using Docker and Docker Compose.\n\n## Prerequisites\n\n- [Docker](https://docs.docker.com/get-docker/) or [podman](https://podman.io/)\n- [Docker Compose](https://docs.docker.com/compose/install/) or [podman compose](https://docs.podman.io/en/latest/markdown/podman-compose.1.html)\n\n## Quick Start\n\n1.  **Clone this repository:**\n    ```bash\n    git clone \u003crepository_url\u003e\n    cd gelrss-docker\n    ```\n\n2.  **Configure API Keys and Environment:**\n\n    Create a `.env` file by copying the example file:\n\n    ```bash\n    cp .env.example .env\n    ```\n\n    Now, edit the `.env` file with a text editor. See [Gelrss](https://github.com/Bakalhau/Gelrss/blob/main/README.md) for details.\n\n3.  **Add Artist Feeds:**\n\n    Feed configurations are stored as `.json` files inside the `configs/` directory. An example is provided in `configs/artist.json.example`.\n\n    To add a new feed, see [Gelrss](https://github.com/Bakalhau/Gelrss/blob/main/README.md) for details.\n\n4.  **Set Permissions for podman:**\n\n    The application requires write access to the `data/` directory to store its database. The `gelrss` service runs as the `node` user (UID 1000) inside the container. To grant this user appropriate write access to the host's `data/` directory, you can change its ownership via unshare:\n\n    ```bash\n    podman unshare chown 1000:1000 -R data/\n    ```\n\n    This command changes the owner and group of the `data/` directory to UID 1000 and GID 1000, matching the `node` user inside the container.\n\n## Usage\n\n### Accessing the Web Interface and Feeds\n\n-   **Web UI**: Open your browser and navigate to `http://localhost:24454` to see the status of all your configured feeds.\n-   **RSS Feed**: The RSS feed for an artist will be available at `http://localhost:24454/rss/\u003cgelbooru_tag\u003e`.\n\n### Managing the Container\n\n-   **Update the Application:**\n    To pull the latest version of Gelrss from its repository and rebuild the Docker image, run:\n    ```bash\n    docker-compose build --no-cache\n    docker-compose up -d\n    ```\n\n## Data Persistence\n\n-   **Feed Configurations**: Your feed configurations in the `configs/` directory are directly mounted into the container. Any changes you make locally will be reflected in the application.\n-   **Cache**: A Docker named volume `gelrss-cache` is used to store the application's cache. This ensures that the cache persists even if the container is removed and recreated.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdav-idka-j%2Fdocker-gelrss","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdav-idka-j%2Fdocker-gelrss","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdav-idka-j%2Fdocker-gelrss/lists"}