forked from DeduskaPikhto/3x-ui-setup
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
32 lines (30 loc) · 791 Bytes
/
docker-compose.yml
File metadata and controls
32 lines (30 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
services:
caddy:
image: caddy:latest
container_name: caddy
restart: always
network_mode: host
volumes:
- ./caddy/data:/data
- ./Caddyfile:/etc/caddy/Caddyfile
lampac:
image: ghcr.io/lampac-nextgen/lampac
container_name: lampac
restart: unless-stopped
shm_size: 1024mb
network_mode: host
volumes:
- ./lampac/config/passwd:/lampac/passwd
- ./lampac/config/init.conf:/lampac/init.conf
3xui:
image: ghcr.io/mhsanaei/3x-ui:latest
container_name: 3xui_app
restart: unless-stopped
network_mode: host
volumes:
- ./3x-ui/db/:/etc/x-ui/
- ./caddy/data/caddy/certificates:/etc/x-ui/certs:ro
environment:
XRAY_VMESS_AEAD_FORCED: "false"
XUI_ENABLE_FAIL2BAN: "true"
tty: true