3x-ui/docker-compose.yml

20 lines
426 B
YAML
Raw Normal View History

2023-05-12 17:48:16 +00:00
services:
3xui:
build:
context: .
dockerfile: ./Dockerfile
container_name: 3xui_app
# hostname: yourhostname <- optional
2026-01-05 21:12:53 +00:00
ports:
- "2053:2053"
- "2096:2096"
2023-05-12 17:48:16 +00:00
volumes:
- $PWD/db/:/etc/x-ui/
- $PWD/cert/:/root/cert/
environment:
XRAY_VMESS_AEAD_FORCED: "false"
XUI_ENABLE_FAIL2BAN: "true"
2023-05-12 17:48:16 +00:00
tty: true
2026-01-05 21:12:53 +00:00
# network_mode: host
2023-05-12 17:48:16 +00:00
restart: unless-stopped