vproxy/docker-compose.yaml

19 lines
359 B
YAML
Raw Normal View History

2023-09-07 01:18:49 +08:00
version: '4'
2024-02-27 18:15:54 +08:00
# host
2022-12-01 23:02:35 +08:00
services:
v2:
container_name: v2
2024-02-27 20:00:57 +08:00
image: evlic/v2raya:dev
privileged: true
2022-12-01 23:02:35 +08:00
restart: always
2023-08-28 17:25:05 +08:00
init: true
2024-02-27 18:15:54 +08:00
network_mode: host
2022-12-01 23:02:35 +08:00
volumes:
- ${DIR}/v2a:/etc/v2raya
2023-04-02 17:34:43 +08:00
- /etc/localtime:/etc/localtime:ro
2022-12-01 23:02:35 +08:00
environment:
2023-01-09 10:54:49 +08:00
V2RAYA_LOG_LEVEL: debug
2022-12-01 23:02:35 +08:00
V2RAYA_ADDRESS: 0.0.0.0:7997
2023-04-02 17:34:43 +08:00
TZ:
TERM:
2024-02-27 18:15:54 +08:00