mirror of https://github.com/fatedier/frp.git
add Dockerfile
This commit is contained in:
parent
30d79e66be
commit
cdd79aee52
|
@ -0,0 +1,14 @@
|
|||
FROM golang:1.5
|
||||
|
||||
MAINTAINER fatedier
|
||||
|
||||
RUN echo "[common]\nbind_addr = 0.0.0.0\nbind_port = 7000\n[wiki]\npasswd = 123\nbind_addr = 0.0.0.0\nlisten_port = 80" > /usr/share/frps.ini
|
||||
|
||||
ADD ./ /usr/share/frp/
|
||||
|
||||
RUN cd /usr/share/frp && make
|
||||
|
||||
EXPOSE 80
|
||||
EXPOSE 7000
|
||||
|
||||
CMD ["/usr/share/frp/bin/frps -c /usr/share/frps.ini"]
|
Loading…
Reference in New Issue