gists/v2ray

By gists

Updated 7 days ago

[unofficial] based on alpine and building from source code.

Image

5M+

Dockerfile https://github.com/vgist/dockerfiles/tree/master/v2ray

Creating an instance:

docker run \
    -d \
    --name v2ray \
    -p 12345:1080 \
    -v $(pwd)/config.json:/etc/v2ray/config.json \
    gists/v2ray

Compose example:

v2ray:
    image: gists/v2ray
    ports:
        - "12345:1080"
    volumes:
        - ./config.json:/etc/v2ray/config.json
  restart: always

Docker Pull Command

docker pull gists/v2ray