3x-ui/docker-compose.yml

18 lines
358 B
YAML
Raw Normal View History

2023-05-12 20:48:16 +03:00
---
2023-12-09 20:50:32 +03:00
version: "3"
2023-05-12 20:48:16 +03:00
services:
3x-ui:
image: ghcr.io/mhsanaei/3x-ui:latest
container_name: 3x-ui
hostname: yourhostname
2023-05-12 20:48:16 +03:00
volumes:
- $PWD/db/:/etc/x-ui/
- $PWD/cert/:/root/cert/
environment:
XRAY_VMESS_AEAD_FORCED: "false"
X_UI_ENABLE_FAIL2BAN: "true"
2023-05-12 20:48:16 +03:00
tty: true
network_mode: host
restart: unless-stopped