{"id":16098611,"url":"https://github.com/funnyzak/snell-server-docker","last_synced_at":"2026-04-05T11:31:58.973Z","repository":{"id":64618689,"uuid":"255569550","full_name":"funnyzak/snell-server-docker","owner":"funnyzak","description":"A Snell Server Docker Image, Supports amd64, arm64, arm/v7, and 386 architectures.","archived":false,"fork":false,"pushed_at":"2025-12-16T11:01:46.000Z","size":25,"stargazers_count":35,"open_issues_count":1,"forks_count":10,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-29T14:47:08.000Z","etag":null,"topics":["docker","docker-image","snell","snell-server","surge"],"latest_commit_sha":null,"homepage":"","language":"Dockerfile","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/funnyzak.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":"2020-04-14T09:44:29.000Z","updated_at":"2025-12-26T02:10:38.000Z","dependencies_parsed_at":"2024-10-22T13:29:41.754Z","dependency_job_id":null,"html_url":"https://github.com/funnyzak/snell-server-docker","commit_stats":null,"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/funnyzak/snell-server-docker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/funnyzak%2Fsnell-server-docker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/funnyzak%2Fsnell-server-docker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/funnyzak%2Fsnell-server-docker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/funnyzak%2Fsnell-server-docker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/funnyzak","download_url":"https://codeload.github.com/funnyzak/snell-server-docker/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/funnyzak%2Fsnell-server-docker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31434624,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-05T08:13:15.228Z","status":"ssl_error","status_checked_at":"2026-04-05T08:13:11.839Z","response_time":75,"last_error":"SSL_read: 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","docker-image","snell","snell-server","surge"],"created_at":"2024-10-09T18:24:09.676Z","updated_at":"2026-04-05T11:31:58.951Z","avatar_url":"https://github.com/funnyzak.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Snell Server\n\n[![Image Size](https://img.shields.io/docker/image-size/funnyzak/snell-server)](https://hub.docker.com/r/funnyzak/snell-server/)\n[![Docker Stars](https://img.shields.io/docker/stars/funnyzak/snell-server.svg?style=flat-square)](https://hub.docker.com/r/funnyzak/snell-server/)\n[![Docker Pulls](https://img.shields.io/docker/pulls/funnyzak/snell-server.svg?style=flat-square)](https://hub.docker.com/r/funnyzak/snell-server/)\n[![Docker Tags](https://img.shields.io/docker/v/funnyzak/snell-server?sort=semver\u0026style=flat-square)](https://hub.docker.com/r/funnyzak/snell-server/)\n\nSnell Server is a lean encrypted proxy protocol. It is designed to be simple, lightweight.\n\nThis image is build from the latest source code of [Snell Server](https://kb.nssurge.com/surge-knowledge-base/zh/release-notes/snell). It supports `linux/amd64`, `linux/arm64`, `linux/arm/v7`, `linux/386` architecture.\n\n## Docker Pull\n\n```bash\ndocker pull funnyzak/snell-server\n# GHCR\ndocker pull ghcr.io/funnyzak/snell-server\n# Aliyun\ndocker pull registry.cn-beijing.aliyuncs.com/funnyzak/snell-server\n```\n\n## Deployment\n\nYour can run this image with the following command:\n\n```bash\ndocker run -d --name snell-server --restart always -p 12303:6180 -e PSK=\"5G0H4qdf32mEZx32t\" funnyzak/snell-server\n\n# With more options\ndocker run -d --name snell-server --restart always \\\n  -e PSK=\"5G0H4qdf32mEZx32t\" \\\n  -e TZ=\"Asia/Shanghai\" \\\n  -e IPV6=\"false\" \\\n  -e PORT=6180 \\\n  -e EGRESS_INTERFACE=\"eth0\" \\\n  -p 12303:6180 funnyzak/snell-server:latest\n\n# Echo config file\ndocker exec -it snell-server cat /etc/snell-server.conf\n```\n\n## Docker Compose\n\n```yaml\nversion: '3'\nservices:\n  snell:\n    image: funnyzak/snell-server\n    container_name: snell-server\n    environment:\n      PSK: 5G0H4qdf32mEZx32t\n      TZ: Asia/Shanghai\n      IPV6: false\n      PORT: 6180\n      EGRESS_INTERFACE: eth0  # Optional: specify network interface for outbound connections\n    restart: always\n    ports:\n      - 12303:6180\n```\n\n\n## Environment Variables\n\n| Variable | Default | Description |\n|----------|---------|-------------|\n| `PSK` | Auto-generated | Pre-shared key for authentication |\n| `PORT` | `6180` | Port number for the server to listen on |\n| `IPV6` | `false` | Enable IPv6 support |\n| `EGRESS_INTERFACE` | - | Network interface name for outbound connections (e.g., `eth0`, `wlan0`) |\n\n## Surge Configuration\n\n```ini\n[Proxy]\nProxy = snell, 1.2.3.4, 6333, psk=RANDOM_KEY_HERE, version=4\n```\n\n## Reference\n\n- [Snell Knowledge](https://kb.nssurge.com/surge-knowledge-base/zh/release-notes/snell)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffunnyzak%2Fsnell-server-docker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffunnyzak%2Fsnell-server-docker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffunnyzak%2Fsnell-server-docker/lists"}