gists/v2ray
[unofficial] based on alpine and building from source code.
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 gists/v2ray