1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-25 02:04:06 +02:00
dockerfiles/kcptun/docker-compose.yml

27 lines
490 B
YAML
Raw Normal View History

2016-08-10 09:25:53 +02:00
server:
image: vimagick/kcptun
command:
--listen :29900
--target google-public-dns-a.google.com:53
2017-10-24 10:35:19 +02:00
--crypt aes
--mode fast
2016-08-10 09:25:53 +02:00
ports:
- "29900:29900/udp"
environment:
- KCPTUN_KEY=******
restart: always
client:
image: vimagick/kcptun
entrypoint: client_linux_amd64
command:
--localaddr :12948
2017-10-24 10:35:19 +02:00
--remoteaddr easypi.pro:29900
--crypt aes
--mode fast
2016-08-10 09:25:53 +02:00
ports:
- "12948:12948/tcp"
environment:
- KCPTUN_KEY=******
restart: always