-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
executable file
·43 lines (40 loc) · 1.11 KB
/
Copy pathdocker-compose.yml
File metadata and controls
executable file
·43 lines (40 loc) · 1.11 KB
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
33
34
35
36
37
38
39
40
41
42
43
version: '3'
services:
# https://github.com/vimagick/dockerfiles
dante:
image: vimagick/dante:latest
container_name: dante
ports:
- "1088:1080"
volumes:
- "./dante-entrypoint.sh:/dante-entrypoint.sh"
- ./sockd.conf:/etc/sockd.conf
environment:
- CFGFILE=/etc/sockd.conf
- PIDFILE=/tmp/sockd.pid
- WORKERS=10
- SOCKS_USERNAME=suck-rkn
- SOCKS_PASSWORD=telegram
restart: unless-stopped
command: bash /dante-entrypoint.sh
# https://github.com/kylemanna/docker-openvpn
openvpn:
cap_add:
- NET_ADMIN
image: kylemanna/openvpn:latest
container_name: openvpn
ports:
- "1194:1194/udp"
restart: unless-stopped
volumes:
- ./openvpn-data/conf:/etc/openvpn
# https://github.com/alexbers/mtprotoproxy
mtproxy:
image: alexbers/mtprotoproxy:stable
container_name: mtproxy
ports:
- "443:443" # internal port define in config_mtproxy_server.py -> PORT
volumes:
- ./config_mtproxy_server.py:/home/tgproxy/config.py
- ./mtprotoproxy.py:/home/tgproxy/mtprotoproxy.py
restart: unless-stopped