Skip to content

This image is based on Alpine Linux image, which is only a 9MB image, and contains Snell Server.

License

Notifications You must be signed in to change notification settings

90linux/snell-server-docker

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Snell Server Docker

Docker Stars Docker Pulls

This image is based on Alpine Linux image, which is only a 9MB image, and contains Snell Server (v3.0.1).

Download size of this image is only:

Image Size

Docker hub image: funnyzak/snell-server

Docker Pull Command: docker pull funnyzak/snell-server


Display Conf

docker exec snell-server cat /etc/snell/snell-server.conf

Usage Example

Here is an example configuration of Docker and Docker Compse.

Docker Run

docker run -d --name snell-server --restart always \
-p 1002:12345 -e PSK="5G0H4qdf32mEZx32t" -e OBFS="tls" funnyzak/snell-server

Compose

version: '3'
services:
  server:
    image: funnyzak/snell-server
    container_name: snell-server
    logging:
      driver: "json-file"
      options:
        max-size: "1g"
    environment:
      PSK: 5G0H4qdf32mEZx32t
      OBFS: tls
    tty: true
    restart: always
    ports:
      - 1002:12345
    volumes:
      - ./conf:/etc/snell

Related Link

About

This image is based on Alpine Linux image, which is only a 9MB image, and contains Snell Server.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dockerfile 69.1%
  • Shell 30.9%