dockerfile: update

This commit is contained in:
fatedier 2016-08-16 15:06:48 +08:00
parent ab9eff97a8
commit e1e18ba9d6
4 changed files with 37 additions and 10 deletions

View File

@ -1,11 +1,17 @@
FROM golang:1.6
RUN go get github.com/tools/godep
COPY . /go/src/github.com/fatedier/frp
RUN cd /go/src/github.com/fatedier/frp \
&& make \
&& mv bin/frpc bin/frps /usr/local/bin \
&& mv conf/*.ini /
RUN cd /go/src/github.com/fatedier/frp \
&& make \
&& mv bin/frpc /frpc \
&& mv bin/frps /frps \
&& mv conf/frpc_min.ini /frpc.ini \
&& mv conf/frps_min.ini /frps.ini \
&& make clean
WORKDIR /
ENTRYPOINT ["frps"]
EXPOSE 6000 7000 7500
EXPOSE 80 443 6000 7000 7500
ENTRYPOINT ["/frps"]

View File

@ -1,7 +1,4 @@
# [common] is integral section
[common]
# A literal address or host name for IPv6 must be enclosed
# in square brackets, as in "[::1]:80", "[ipv6-host]:http" or "[ipv6-host%zone]:80"
server_addr = 0.0.0.0
server_port = 7000
# if you want to connect frps by http proxy, you can set http_proxy here or in global environment variables

10
conf/frpc_min.ini Normal file
View File

@ -0,0 +1,10 @@
[common]
server_addr = 0.0.0.0
server_port = 7000
auth_token = 123
privilege_token = 12345678
[ssh]
type = tcp
local_ip = 127.0.0.1
local_port = 22

14
conf/frps_min.ini Normal file
View File

@ -0,0 +1,14 @@
[common]
bind_addr = 0.0.0.0
bind_port = 7000
vhost_http_port = 80
vhost_https_port = 443
dashboard_port = 7500
privilege_mode = true
privilege_token = 12345678
[ssh]
type = tcp
auth_token = 123
bind_addr = 0.0.0.0
listen_port = 6000