1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-27 01:45:23 +00:00
v2fly/tools/docker
2016-02-23 12:23:22 +08:00
..
build.sh [docker] generate server config on first run 2016-02-22 18:10:02 +08:00
docker-entrypoint.sh [docker] refine Dockerfile 2016-02-23 12:23:22 +08:00
Dockerfile [docker] refine Dockerfile 2016-02-23 12:23:22 +08:00
gen-server-cfg.sh [docker] generate server config on first run 2016-02-22 18:10:02 +08:00
README.md [doc] update logs file path missing in 6e84500 2016-02-22 18:15:31 +08:00
run.sh Move docker files to tools 2015-12-28 10:28:14 +01:00

Docker build for v2ray

Usage

To build the image:

./build.sh

Then spin up a v2ray instance with:

./run.sh

The docker image will generate a server config file with random user id on first run. You can get see it with:

docker logs v2ray

You can also specify config file by manual with:

docker run -d --name=v2ray -p 27183:27183 -v /config/file.json:/go/server-config.json $USER/v2ray

To tail the access log, run:

docker exec v2ray tail -F /go/access.log