mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-01-18 04:58:52 +02:00
add v2ray
This commit is contained in:
parent
b844edd300
commit
916f30b393
@ -280,6 +280,7 @@ A collection of delicious docker recipes.
|
|||||||
- [x] stunnel-arm
|
- [x] stunnel-arm
|
||||||
- [x] tinyproxy
|
- [x] tinyproxy
|
||||||
- [x] tor
|
- [x] tor
|
||||||
|
- [x] v2ray :cn:
|
||||||
- [x] wireproxy
|
- [x] wireproxy
|
||||||
|
|
||||||
## VPN
|
## VPN
|
||||||
@ -510,7 +511,6 @@ A collection of delicious docker recipes.
|
|||||||
- [x] trinodb/trino
|
- [x] trinodb/trino
|
||||||
- [x] ghcr.io/coqui-ai/tts-cpu
|
- [x] ghcr.io/coqui-ai/tts-cpu
|
||||||
- [x] louislam/uptime-kuma
|
- [x] louislam/uptime-kuma
|
||||||
- [x] v2ray/official :cn:
|
|
||||||
- [x] mpromonet/v4l2rtspserver :camera:
|
- [x] mpromonet/v4l2rtspserver :camera:
|
||||||
- [x] centurylink/watchtower
|
- [x] centurylink/watchtower
|
||||||
- [x] aceberg/watchyourlan
|
- [x] aceberg/watchyourlan
|
||||||
|
28
v2ray/Dockerfile
Normal file
28
v2ray/Dockerfile
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
#
|
||||||
|
# Dockerfile from v2ray
|
||||||
|
#
|
||||||
|
|
||||||
|
FROM alpine:3
|
||||||
|
MAINTAINER EasyPi Software Foundation
|
||||||
|
|
||||||
|
ARG V2RAY_VERSION=5.16.1
|
||||||
|
ARG V2RAY_OS=linux
|
||||||
|
ARG V2RAY_ARCH=64
|
||||||
|
ARG V2RAY_FILE=v2ray-${V2RAY_OS}-${V2RAY_ARCH}.zip
|
||||||
|
ARG V2RAY_URL=https://github.com/v2fly/v2ray-core/releases/download/v${V2RAY_VERSION}/${V2RAY_FILE}
|
||||||
|
|
||||||
|
ENV V2RAY_LOCATION_ASSET=/usr/local/share/v2ray
|
||||||
|
ENV V2RAY_LOCATION_CONFIG=/etc/v2ray
|
||||||
|
|
||||||
|
RUN set -xe \
|
||||||
|
&& apk add --no-cache curl unzip \
|
||||||
|
&& curl -sSL ${V2RAY_URL} > v2ray.zip \
|
||||||
|
&& unzip -j v2ray.zip 'v2ray' -d /usr/local/bin \
|
||||||
|
&& unzip -j v2ray.zip '*.dat' -d $V2RAY_LOCATION_ASSET \
|
||||||
|
&& unzip -j v2ray.zip '*.json' -d $V2RAY_LOCATION_CONFIG \
|
||||||
|
&& rm v2ray.zip \
|
||||||
|
&& apk del curl unzip
|
||||||
|
|
||||||
|
EXPOSE 10086
|
||||||
|
|
||||||
|
CMD ["v2ray", "run"]
|
@ -3,17 +3,7 @@ v2ray
|
|||||||
|
|
||||||
[v2ray][1] is a platform for building proxies to bypass network restrictions.
|
[v2ray][1] is a platform for building proxies to bypass network restrictions.
|
||||||
|
|
||||||
```yaml
|
Download sample config [here][2].
|
||||||
v2ray:
|
|
||||||
image: v2ray/official
|
|
||||||
ports:
|
|
||||||
- "8001:8001"
|
|
||||||
volumes:
|
|
||||||
- ./data:/etc/v2ray
|
|
||||||
restart: always
|
|
||||||
```
|
|
||||||
|
|
||||||
Download sample [config.json][2].
|
[1]: https://v2fly.org/
|
||||||
|
[2]: https://github.com/v2fly/v2ray-core/tree/master/release/config
|
||||||
[1]: https://www.v2ray.com/
|
|
||||||
[2]: https://github.com/v2ray/install/raw/master/docker/official/config.json
|
|
||||||
|
@ -1,24 +1,39 @@
|
|||||||
{
|
{
|
||||||
"log" : {
|
"inbounds": [
|
||||||
"access": "/dev/stdout",
|
{
|
||||||
"error": "/dev/stderr",
|
"port": 10086,
|
||||||
"loglevel": "warning"
|
"protocol": "vmess",
|
||||||
},
|
"settings": {
|
||||||
"inbound": {
|
"clients": [
|
||||||
"port": 8001,
|
{
|
||||||
"protocol": "vmess",
|
"id": "23ad6b10-8d1a-40f7-8ad0-e3e35cd38297",
|
||||||
"settings": {
|
"level": 1,
|
||||||
"clients": [
|
"alterId": 64
|
||||||
{
|
}
|
||||||
"id": "11111111-2222-3333-4444-555555555555",
|
]
|
||||||
"level": 1,
|
}
|
||||||
"alterId": 32
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
},
|
],
|
||||||
"outbound": {
|
"outbounds": [
|
||||||
"protocol": "freedom",
|
{
|
||||||
"settings": {}
|
"protocol": "freedom",
|
||||||
|
"settings": {}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"protocol": "blackhole",
|
||||||
|
"settings": {},
|
||||||
|
"tag": "blocked"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"routing": {
|
||||||
|
"rules": [
|
||||||
|
{
|
||||||
|
"type": "field",
|
||||||
|
"ip": [
|
||||||
|
"geoip:private"
|
||||||
|
],
|
||||||
|
"outboundTag": "blocked"
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,9 @@
|
|||||||
v2ray:
|
version: "3.8"
|
||||||
image: v2ray/official
|
services:
|
||||||
ports:
|
v2ray:
|
||||||
- "8001:8001"
|
image: vimagick/v2ray
|
||||||
volumes:
|
ports:
|
||||||
- ./data:/etc/v2ray
|
- "10086:10086"
|
||||||
restart: always
|
volumes:
|
||||||
|
- ./data:/etc/v2ray
|
||||||
|
restart: unless-stopped
|
||||||
|
Loading…
Reference in New Issue
Block a user