Repository: Wind4/vlmcsd-docker
Branch: master
Commit: 4195d04f6879
Files: 3
Total size: 739 B
Directory structure:
gitextract_nzyah3d5/
├── Dockerfile
├── README.md
└── docker-compose.yml
================================================
FILE CONTENTS
================================================
================================================
FILE: Dockerfile
================================================
FROM alpine:latest as builder
WORKDIR /root
RUN apk add --no-cache git make build-base && \
git clone --branch master --single-branch https://github.com/Wind4/vlmcsd.git && \
cd vlmcsd/ && \
make
FROM alpine:latest
WORKDIR /root/
COPY --from=builder /root/vlmcsd/bin/vlmcsd /usr/bin/vlmcsd
EXPOSE 1688/tcp
CMD [ "/usr/bin/vlmcsd", "-D", "-d" ]
================================================
FILE: README.md
================================================
# VLMCSD for Docker
Deploy vlmcsd service on Docker container
```bash
git clone https://github.com/Wind4/vlmcsd-docker.git vlmcsd
cd vlmcsd
# Use docker-compose service
docker-compose up -d
# or docker build image
docker build -t vlmcsd .
docker run -idt -p 1688:1688 vlmcsd
```
================================================
FILE: docker-compose.yml
================================================
version: "3.7"
services:
vlmcsd:
build: .
ports:
- "1688:1688"
restart: always
gitextract_nzyah3d5/ ├── Dockerfile ├── README.md └── docker-compose.yml
Condensed preview — 3 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (1K chars).
[
{
"path": "Dockerfile",
"chars": 356,
"preview": "FROM alpine:latest as builder\nWORKDIR /root\nRUN apk add --no-cache git make build-base && \\\n git clone --branch maste"
},
{
"path": "README.md",
"chars": 283,
"preview": "# VLMCSD for Docker\n\nDeploy vlmcsd service on Docker container\n\n```bash\ngit clone https://github.com/Wind4/vlmcsd-docker"
},
{
"path": "docker-compose.yml",
"chars": 100,
"preview": "version: \"3.7\"\nservices:\n\n vlmcsd:\n build: .\n ports:\n - \"1688:1688\"\n restart: always\n"
}
]
About this extraction
This page contains the full source code of the Wind4/vlmcsd-docker GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 3 files (739 B), approximately 342 tokens. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.