1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-28 09:41:20 +00:00
dockerfiles/kcptun/docker-compose.yml

27 lines
490 B
YAML
Raw Normal View History

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