feat: add dockerized 3proxy control plane backend

This commit is contained in:
2026-04-02 00:06:26 +03:00
parent ff2bc8711b
commit 25f6beedd8
20 changed files with 3076 additions and 174 deletions

23
compose.yaml Normal file
View File

@@ -0,0 +1,23 @@
services:
3proxy-ui:
build:
context: .
dockerfile: Dockerfile
container_name: 3proxy-ui
ports:
- "3000:3000"
- "1080:1080"
- "2080:2080"
- "3128:3128"
- "8081:8081"
environment:
PORT: "3000"
AUTO_START_3PROXY: "true"
THREEPROXY_BINARY: "/usr/local/bin/3proxy"
RUNTIME_DIR: "/app/runtime"
volumes:
- 3proxy-runtime:/app/runtime
restart: unless-stopped
volumes:
3proxy-runtime: