mirror of
https://github.com/alireza0/x-ui.git
synced 2026-06-28 19:50:48 +00:00
19 lines
398 B
YAML
19 lines
398 B
YAML
services:
|
|
xui:
|
|
build:
|
|
context: .
|
|
target: builder
|
|
working_dir: /app
|
|
volumes:
|
|
- .:/app
|
|
- ./dev/db:/etc/x-ui
|
|
network_mode: host
|
|
cap_add:
|
|
- NET_ADMIN
|
|
restart: unless-stopped
|
|
environment:
|
|
XUI_BIN_FOLDER: /app/dev/bin
|
|
XUI_DB_FOLDER: /etc/x-ui
|
|
XUI_LOG_LEVEL: debug
|
|
XUI_DEBUG: "true"
|
|
command: ["go","run","./main.go"]
|