Skip to content

AkinoYuiko/snell-server-docker

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Snell Server

Build Status Image Size Docker Stars Docker Pulls Docker Tags

A minimal Snell Server docker image. If you want to use Snell Client, please download from NSSurge.

This image supports linux/amd64 and linux/arm64 architecture.

The latest surge-server version is v4, which is not compatible with the previous versions like before. Please upgrade both the client (Surge iOS & Surge Mac) and the server binary.

Notice: obfs is NOT supported!

Docker Pull

docker pull angribot/snell:latest

Docker Run

Your can run this image with the following command:

# One line command
docker run -d --name snell --restart always -p 12303:6250 -e PSK="5G0H4qdf32mEZx32t" angribot/snell

# Or with environment variables
docker run -d --name snell --restart always \
  -e PSK="5G0H4qdf32mEZx32t" \
  -p 12303:6250 angribot/snell:latest

# Echo config file
docker exec -it snell cat /root/snell-server.conf

Or you can use docker-compose to run this image:

services:
  snell:
    image: angribot/snell
    container_name: snell
    environment:
      PSK: 5G0H4qdf32mEZx32t
    restart: always
    ports:
      - 12345:6250

Reference

License

MIT

About

A Snell Server Docker Image.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 70.0%
  • Dockerfile 30.0%