mirror of
https://github.com/okxlin/appstore.git
synced 2026-02-22 19:07:44 +08:00
19 lines
494 B
YAML
19 lines
494 B
YAML
version: "3"
|
|
services:
|
|
v2raya:
|
|
container_name: ${CONTAINER_NAME}
|
|
restart: always
|
|
network_mode: "host"
|
|
privileged: true
|
|
environment:
|
|
- V2RAYA_CONFIG:/etc/v2raya
|
|
- V2RAYA_ADDRESS=0.0.0.0:${PANEL_APP_PORT_HTTP}
|
|
- V2RAYA_PLUGINLISTENPORT:${PLUGIN_PORT}
|
|
volumes:
|
|
- "${DATA_PATH}/v2raya:/etc/v2raya"
|
|
- /lib/modules:/lib/modules:ro
|
|
- /etc/resolv.conf:/etc/resolv.conf
|
|
image: mzz2017/v2raya:latest
|
|
labels:
|
|
createdBy: "Apps"
|