20 lines
508 B
YAML
20 lines
508 B
YAML
# https://github.com/alireza0/s-ui
|
|
# Panel Port: 2095
|
|
# Panel Path: /app/
|
|
# Subscription Port: 2096
|
|
# Subscription Path: /sub/
|
|
# User/Password: admin
|
|
services:
|
|
xui:
|
|
image: alireza7/s-ui
|
|
container_name: s-ui
|
|
volumes:
|
|
- $PWD/db/:/app/db/
|
|
- $PWD/cert/:/app/cert/
|
|
restart: unless-stopped
|
|
network_mode: host
|
|
logging:
|
|
driver: "json-file"
|
|
options:
|
|
max-size: "10m" # 每个日志文件最大 10M
|
|
max-file: "3" # 最多保留 3 个滚动日志文件 |