mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-06-22 02:01:08 +07:00
a49892c7e7
* Feat: Add MtProxy (Telegram) * add path files * Feat: Add Telemt (MtProxy) * fixed secret & enum * remove old path * refactor: move logic from ui to core --------- Co-authored-by: vkamn <vk@amnezia.org>
10 lines
296 B
Bash
10 lines
296 B
Bash
# Run container (ulimit per Telemt docs — avoids "Too many open files" under load)
|
|
sudo docker run -d \
|
|
--log-driver none \
|
|
--restart always \
|
|
--ulimit nofile=65536:65536 \
|
|
-p $TELEMT_PORT:$TELEMT_PORT/tcp \
|
|
-v amnezia-telemt-data:/data \
|
|
--name $CONTAINER_NAME \
|
|
$CONTAINER_NAME
|