{"id":51902431,"url":"https://github.com/linuxserver/sealskin-apps","last_synced_at":"2026-07-26T17:31:01.225Z","repository":{"id":321053694,"uuid":"1083745558","full_name":"linuxserver/sealskin-apps","owner":"linuxserver","description":"Metadata for Linuxserver.io SealSkin applications","archived":false,"fork":false,"pushed_at":"2026-05-13T18:00:23.000Z","size":116,"stargazers_count":5,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-07-07T16:42:49.413Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/linuxserver.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},"funding":{"github":"linuxserver","open_collective":"linuxserver"}},"created_at":"2025-10-26T16:30:23.000Z","updated_at":"2026-06-27T13:29:16.000Z","dependencies_parsed_at":"2026-01-05T05:09:15.062Z","dependency_job_id":null,"html_url":"https://github.com/linuxserver/sealskin-apps","commit_stats":null,"previous_names":["linuxserver/sealskin-apps"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/linuxserver/sealskin-apps","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linuxserver%2Fsealskin-apps","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linuxserver%2Fsealskin-apps/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linuxserver%2Fsealskin-apps/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linuxserver%2Fsealskin-apps/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/linuxserver","download_url":"https://codeload.github.com/linuxserver/sealskin-apps/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linuxserver%2Fsealskin-apps/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35922387,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-07-20T02:08:10.276Z","status":"online","status_checked_at":"2026-07-26T02:00:06.503Z","response_time":89,"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":[],"created_at":"2026-07-26T17:31:00.549Z","updated_at":"2026-07-26T17:31:01.219Z","avatar_url":"https://github.com/linuxserver.png","language":"Shell","funding_links":["https://github.com/sponsors/linuxserver","https://opencollective.com/linuxserver"],"categories":[],"sub_categories":[],"readme":"# SealSkin Application Store\n\nThis repository contains the `apps.yml` file, which serves as the primary application manifest for the **SealSkin** file isolation stack. It defines the applications available to users, their configurations, and the file types they are associated with.\n\n## File Structure\n\nThe YAML file is organized into two main sections at the root level: `extension_groups` and `apps`.\n\n### `extension_groups`\n\nThis section is designed to keep the manifest clean and maintainable by defining reusable \"buckets\" of file extensions.\n\nIt uses standard YAML **anchors** (`\u0026`) to define a group and **aliases** (`*`) to reuse it later in the `apps` section. This prevents you from having to repeatedly type common lists of extensions (e.g., `jpg, jpeg, png, gif`) for every image-related application.\n\n**Example:**\n```yaml\nextension_groups:\n  common_image_files: \u0026common_image_files\n    - jpg\n    - jpeg\n    - png\n    - gif\n    - bmp\n```\nHere, `\u0026common_image_files` creates an anchor that can be referenced later using `*common_image_files`.\n\n### `apps`\n\nThis is a list that contains the definition object for every application available in this SealSkin App Store. Each object in the list defines one application and its properties.\n\n#### Application Object Fields\n\nEach application is defined by a set of key-value pairs:\n\n*   `id`: (String) A unique, lowercase, URL-safe identifier for the application.\n*   `name`: (String) The human-readable name of the application that will be displayed in the UI.\n*   `logo`: (String) A URL pointing to the application's logo.\n*   `url`: (String) A URL pointing to the application's source code or Docker Hub page for reference.\n*   `provider`: (String) The backend provider for launching the app.\n*   `provider_config`: (Object) A nested object containing configuration specific to the provider. For Docker, this includes:\n    *   `image`: (String) The full Docker image name and tag (e.g., `lscr.io/linuxserver/gimp:latest`).\n    *   `port`: (Integer) The internal port that the application's web service listens on inside the container.\n    *   `nvidia_support`: (Boolean) Set to `true` if the application can leverage NVIDIA GPUs for hardware acceleration.\n    *   `dri3_support`: (Boolean) Set to `true` if the application can leverage Intel/AMD GPUs via DRI3 for hardware acceleration.\n    *   `type`: (String) The category of the application. Can be `app`, `browser`, or `desktop`.\n    *   `autostart`: (Boolean) When set to `true`, the server will use a corresponding autostart script to launch the application within its desktop environment (e.g., Openbox). This allows for custom launch logic, such as passing file paths or URLs. If `false`, a default launch mechanism is assumed.\n    *   `url_support`: (Boolean) Set to `true` if the application can be launched with a target URL (e.g., a web browser).\n    *   `open_support`: (Boolean) Set to `true` if the application can be launched by opening a file. This is required for the `extensions` list to be meaningful.\n    *   `extensions`: (List of Strings) A list of file extensions (without the leading dot) that this application can open. It is **highly recommended** to use aliases (`*group_name`) from `extension_groups` to populate this list.\n    *   `docker_overrides`: (Object) Optional. A dictionary of specific Docker run parameters to override or append during container launch. This is useful for advanced configurations like `shm_size`, `cap_add`, or `security_opt`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flinuxserver%2Fsealskin-apps","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flinuxserver%2Fsealskin-apps","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flinuxserver%2Fsealskin-apps/lists"}