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

23 lines
427 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
ports:
- "29900:29900/udp"
environment:
- KCPTUN_KEY=******
restart: always
client:
image: vimagick/kcptun
entrypoint: client_linux_amd64
command:
--localaddr :12948
--remoteaddr easypi.info:29900
ports:
- "12948:12948/tcp"
environment:
- KCPTUN_KEY=******
restart: always