{"id":17069247,"url":"https://github.com/mogeko/docker-vlmcsd","last_synced_at":"2025-04-12T18:21:34.230Z","repository":{"id":40478052,"uuid":"185583493","full_name":"mogeko/docker-vlmcsd","owner":"mogeko","description":"A rootless container running vlmcsd","archived":false,"fork":false,"pushed_at":"2025-03-20T01:17:36.000Z","size":1566,"stargazers_count":28,"open_issues_count":0,"forks_count":5,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-20T02:27:10.319Z","etag":null,"topics":["buildah","containers","distroless","docker","rootless"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mogeko.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}},"created_at":"2019-05-08T10:22:25.000Z","updated_at":"2025-03-20T01:17:34.000Z","dependencies_parsed_at":"2024-08-14T17:43:18.945Z","dependency_job_id":"a7b75595-08db-49ff-be71-0f3b8a19b03b","html_url":"https://github.com/mogeko/docker-vlmcsd","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mogeko%2Fdocker-vlmcsd","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mogeko%2Fdocker-vlmcsd/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mogeko%2Fdocker-vlmcsd/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mogeko%2Fdocker-vlmcsd/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mogeko","download_url":"https://codeload.github.com/mogeko/docker-vlmcsd/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248610686,"owners_count":21132984,"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":["buildah","containers","distroless","docker","rootless"],"created_at":"2024-10-14T11:16:40.580Z","updated_at":"2025-04-12T18:21:34.195Z","avatar_url":"https://github.com/mogeko.png","language":"C","readme":"# docker-vlmcsd\n\n[![Build](https://github.com/mogeko/docker-vlmcsd/actions/workflows/build.yml/badge.svg)](https://github.com/mogeko/docker-vlmcsd/actions/workflows/build.yml)\n[![Docker Pulls](https://img.shields.io/docker/pulls/mogeko/vlmcsd?logo=docker)](https://github.com/users/mogeko/packages/container/package/vlmcsd)\n[![Docker Image Size](https://img.shields.io/docker/image-size/mogeko/vlmcsd?logo=docker)](https://github.com/users/mogeko/packages/container/package/vlmcsd)\n\nA rootless container running [vlmcsd](https://mogeko.github.io/docker-vlmcsd/vlmcsd.8.pdf).\n\n**Since March 2023, vlmcsd images has been upgraded to a `rootless` container, it based on [\"Distroless\" image](https://github.com/GoogleContainerTools/distroless) and uses [Buildah](https://buildah.io) as a container compilation engine.** [Why do we use them?](#about-distroless-images-and-buildah).\n\n## Usage\n\nPull this image:\n\n```shell\ndocker pull ghcr.io/mogeko/vlmcsd:latest\n```\n\nRun with docker cli:\n\n```shell\ndocker run -d --name vlmcsd -p 1688:1688 --restart unless-stopped ghcr.io/mogeko/vlmcsd:latest\n```\n\nRun with [docker-compose](https://docs.docker.com/compose):\n\n```yml\n---\nversion: 2.1\nservices:\n  vlmcsd:\n    image: ghcr.io/mogeko/vlmcsd:latest\n    container_name: vlmcsd\n    ports:\n      - 1688:1688\n    restart: unless-stopped\n```\n\n## Parameter\n\nContainer images are configured using parameters passed at runtime (such as those above). These parameters are separated by a colon and indicate `\u003cexternal\u003e:\u003cinternal\u003e` respectively. For example, `-p 8080:80` would expose port `80` from inside the container to be accessible from the host's IP on port `8080` outside the container.\n\n| Parameter | Function            |\n| --------- | ------------------- |\n| `-p 1688` | tcp connection port |\n\n## About \"Distroless\" images and Buildah\n\n[\"Distroless\" container image](https://github.com/GoogleContainerTools/distroless) is an application-centered [OCI container image](https://opencontainers.org) launched by Google for the [Kubernetes](https://kubernetes.io) project. It contain **only** your application and its runtime dependencies. They do NOT contain **package managers**, **shells** or any other **programs** you would expect to find in a standard Linux distribution (Your application will be the only **executable program** in the entire container image).\n\nCompared with the traditional complete [Debian](https://hub.docker.com/_/debian) container image, Distroless has an unparalleled \u003csub\u003esize\u003c/sub\u003e advantage, its [minimum](https://github.com/GoogleContainerTools/distroless/blob/main/base/README.md) is only 2MB, less than 2% of the Debian (124MB). Compared with [Alpine Linux](https://hub.docker.com/_/alpine), it has a **smaller attack surface** and better **compatibility** (based on Debian and [`glibc`](https://www.gnu.org/software/libc)).\n\n| Image      | Size   | rootless? | shell? | package-manager? | other programs?    | C library |\n| ---------- | ------ | --------- | ------ | ---------------- | ------------------ | --------- |\n| distroless | 12.6MB | support   | :x:    | :x:              | :x:                | `glibc`   |\n| debian     | 118MB  | support?  | `bash` | `apt-get`        | :white_check_mark: | `glibc`   |\n| alpine     | 7.51MB | support?  | `bash` | `apk`            | :white_check_mark: | `musl`    |\n\nAs for [Buildah](https://buildah.io). It is a container mirror compilation engine launched by Red Hat. Its biggest selling point is that it allows you to **create a container images in a completely unprivileged environment, that is _\"rootless\"_**. With the help of Buildah, we were able to **put the entire life cycle of the container's compilation and operation in the user namespace**. So as to protect our digital security.\n\n## Upstream source code\n\n\u003chttps://forums.mydigitallife.net/threads/emulated-kms-servers-on-non-windows-platforms.50234\u003e\n\n\u003chttps://www.upload.ee/files/11363704/vlmcsd-1113-2020-03-28-Hotbird64.7z.html\u003e\n\n## License\n\nThe code in this project is released under the [MIT License](./LICENSE).\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmogeko%2Fdocker-vlmcsd","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmogeko%2Fdocker-vlmcsd","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmogeko%2Fdocker-vlmcsd/lists"}