14 lines
329 B
YAML
14 lines
329 B
YAML
version: "3.9"
|
|
|
|
services:
|
|
v2ray-client:
|
|
image: v2fly/v2fly-core:latest
|
|
container_name: v2ray-client
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ./v2ray-client.json:/etc/v2ray/config.json:ro
|
|
command: ["run", "-c", "/etc/v2ray/config.json"]
|
|
ports:
|
|
- "1080:1080" # SOCKS5
|
|
- "8080:8080" # HTTP
|