1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-01 19:45:24 +00:00
v2fly/tools/docker/README.md

37 lines
552 B
Markdown
Raw Normal View History

2015-12-25 02:27:13 +00:00
Docker build for v2ray
=======================
Usage
-----
To build the image:
```bash
./build.sh
```
Then spin up a v2ray instance with:
```bash
./run.sh
```
The docker image will generate a server config file with random user id on first run.
You can get see it with:
```bash
docker logs v2ray
```
2015-12-25 02:27:13 +00:00
2016-02-22 10:08:45 +00:00
You can also specify config file by manual with:
```bash
docker run -d --name=v2ray -p 27183:27183 -v /config/file.json:/go/server-config.json $USER/v2ray
```
2015-12-25 02:27:13 +00:00
To tail the access log, run:
```bash
docker exec v2ray tail -F /go/access.log
2015-12-25 02:27:13 +00:00
```