mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-02-28 05:02:59 +00:00
21 lines
517 B
YAML
21 lines
517 B
YAML
services:
|
|
3xui:
|
|
build:
|
|
context: .
|
|
dockerfile: ./Dockerfile
|
|
container_name: 3xui_app
|
|
# hostname: yourhostname <- optional
|
|
# ports:
|
|
# - "2053:2053" # Web UI
|
|
# - "2096:2096" # Subscriptions
|
|
# - "443:443" # Example - Inbound internal
|
|
volumes:
|
|
- $PWD/db/:/etc/x-ui/
|
|
- $PWD/cert/:/root/cert/
|
|
environment:
|
|
XRAY_VMESS_AEAD_FORCED: "false"
|
|
XUI_ENABLE_FAIL2BAN: "true"
|
|
tty: true
|
|
network_mode: host
|
|
restart: unless-stopped
|
|
|