mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-21 01:27:01 +02:00
update kcptun
This commit is contained in:
parent
8d7331807e
commit
a4a15a0973
@ -2,12 +2,12 @@
|
||||
# Dockerfile for kcptun
|
||||
#
|
||||
|
||||
FROM alpine
|
||||
MAINTAINER kev <noreply@easypi.pro>
|
||||
FROM alpine:3
|
||||
MAINTAINER EasyPi Software Foundation
|
||||
|
||||
ENV KCPTUN_VERSION 20171201
|
||||
ENV KCPTUN_FILE kcptun-linux-amd64-${KCPTUN_VERSION}.tar.gz
|
||||
ENV KCPTUN_URL https://github.com/xtaci/kcptun/releases/download/v${KCPTUN_VERSION}/${KCPTUN_FILE}
|
||||
ENV KCPTUN_VERSION=20210922
|
||||
ENV KCPTUN_FILE=kcptun-linux-amd64-${KCPTUN_VERSION}.tar.gz
|
||||
ENV KCPTUN_URL=https://github.com/xtaci/kcptun/releases/download/v${KCPTUN_VERSION}/${KCPTUN_FILE}
|
||||
|
||||
RUN set -xe \
|
||||
&& apk add --no-cache curl \
|
||||
|
@ -10,32 +10,36 @@ kcptun
|
||||
## docker-compose.yml
|
||||
|
||||
```yaml
|
||||
server:
|
||||
image: vimagick/kcptun
|
||||
command:
|
||||
--listen :29900
|
||||
--target google-public-dns-a.google.com:53
|
||||
--crypt aes
|
||||
--mode fast
|
||||
ports:
|
||||
- "29900:29900/udp"
|
||||
environment:
|
||||
- KCPTUN_KEY=******
|
||||
restart: always
|
||||
version: "3.8"
|
||||
|
||||
client:
|
||||
image: vimagick/kcptun
|
||||
entrypoint: client_linux_amd64
|
||||
command:
|
||||
--localaddr :12948
|
||||
--remoteaddr easypi.pro:29900
|
||||
--crypt aes
|
||||
--mode fast
|
||||
ports:
|
||||
- "12948:12948/tcp"
|
||||
environment:
|
||||
- KCPTUN_KEY=******
|
||||
restart: always
|
||||
services:
|
||||
|
||||
server:
|
||||
image: vimagick/kcptun
|
||||
command:
|
||||
--listen :29900
|
||||
--target google-public-dns-a.google.com:53
|
||||
--crypt aes
|
||||
--mode fast
|
||||
ports:
|
||||
- "29900:29900/udp"
|
||||
environment:
|
||||
- KCPTUN_KEY=******
|
||||
restart: unless-stopped
|
||||
|
||||
client:
|
||||
image: vimagick/kcptun
|
||||
entrypoint: client_linux_amd64
|
||||
command:
|
||||
--localaddr :12948
|
||||
--remoteaddr easypi.pro:29900
|
||||
--crypt aes
|
||||
--mode fast
|
||||
ports:
|
||||
- "12948:12948/tcp"
|
||||
environment:
|
||||
- KCPTUN_KEY=******
|
||||
restart: unless-stopped
|
||||
```
|
||||
|
||||
## Server Setup
|
||||
|
@ -1,26 +1,30 @@
|
||||
server:
|
||||
image: vimagick/kcptun
|
||||
command:
|
||||
--listen :29900
|
||||
--target google-public-dns-a.google.com:53
|
||||
--crypt aes
|
||||
--mode fast
|
||||
ports:
|
||||
- "29900:29900/udp"
|
||||
environment:
|
||||
- KCPTUN_KEY=******
|
||||
restart: always
|
||||
version: "3.8"
|
||||
|
||||
client:
|
||||
image: vimagick/kcptun
|
||||
entrypoint: client_linux_amd64
|
||||
command:
|
||||
--localaddr :12948
|
||||
--remoteaddr easypi.pro:29900
|
||||
--crypt aes
|
||||
--mode fast
|
||||
ports:
|
||||
- "12948:12948/tcp"
|
||||
environment:
|
||||
- KCPTUN_KEY=******
|
||||
restart: always
|
||||
services:
|
||||
|
||||
server:
|
||||
image: vimagick/kcptun
|
||||
command:
|
||||
--listen :29900
|
||||
--target google-public-dns-a.google.com:53
|
||||
--crypt aes
|
||||
--mode fast
|
||||
ports:
|
||||
- "29900:29900/udp"
|
||||
environment:
|
||||
- KCPTUN_KEY=******
|
||||
restart: unless-stopped
|
||||
|
||||
client:
|
||||
image: vimagick/kcptun
|
||||
entrypoint: client_linux_amd64
|
||||
command:
|
||||
--localaddr :12948
|
||||
--remoteaddr easypi.pro:29900
|
||||
--crypt aes
|
||||
--mode fast
|
||||
ports:
|
||||
- "12948:12948/tcp"
|
||||
environment:
|
||||
- KCPTUN_KEY=******
|
||||
restart: unless-stopped
|
||||
|
Loading…
Reference in New Issue
Block a user