[GH-ISSUE #1302] 有没有docker版本? #1032

Closed
opened 2026-05-05 12:39:47 -06:00 by gitea-mirror · 2 comments
Owner

Originally created by @ChinaParrot on GitHub (Jul 1, 2019).
Original GitHub issue: https://github.com/fatedier/frp/issues/1302

Issue is only used for submiting bug report and documents typo. If there are same issues or answers can be found in documents, we will close it directly.
(为了节约时间,提高处理问题的效率,不按照格式填写的 issue 将会直接关闭。)

Use the commands below to provide key information from your environment:
You do NOT have to include this information if this is a FEATURE REQUEST

What version of frp are you using (./frpc -v or ./frps -v)?

What operating system and processor architecture are you using (go env)?

Configures you used:

Steps to reproduce the issue:
1.
2.
3.

Describe the results you received:

Describe the results you expected:

Additional information you deem important (e.g. issue happens only occasionally):

Can you point out what caused this issue (optional)

Originally created by @ChinaParrot on GitHub (Jul 1, 2019). Original GitHub issue: https://github.com/fatedier/frp/issues/1302 Issue is only used for submiting bug report and documents typo. If there are same issues or answers can be found in documents, we will close it directly. (为了节约时间,提高处理问题的效率,不按照格式填写的 issue 将会直接关闭。) Use the commands below to provide key information from your environment: You do NOT have to include this information if this is a FEATURE REQUEST **What version of frp are you using (./frpc -v or ./frps -v)?** **What operating system and processor architecture are you using (`go env`)?** **Configures you used:** **Steps to reproduce the issue:** 1. 2. 3. **Describe the results you received:** **Describe the results you expected:** **Additional information you deem important (e.g. issue happens only occasionally):** **Can you point out what caused this issue (optional)**
Author
Owner

@tzw0745 commented on GitHub (Jul 1, 2019):

一个二进制文件就启动了还要啥docker

<!-- gh-comment-id:507138272 --> @tzw0745 commented on GitHub (Jul 1, 2019): 一个二进制文件就启动了还要啥docker
Author
Owner

@Galaxyobe commented on GitHub (Jul 4, 2019):

FROM alpine:latest
WORKDIR /
ENV FRP_VERSION 0.27.0
RUN set -x &&
wget --no-check-certificate https://github.com/fatedier/frp/releases/download/v${FRP_VERSION}/frp_${FRP_VERSION}linux_amd64.tar.gz &&
tar xzf frp
${FRP_VERSION}linux_amd64.tar.gz &&
cd frp
${FRP_VERSION}linux_amd64 &&
mkdir /frp &&
mv frps /frps &&
mv frps.ini /frp/frps.ini &&
cd .. &&
rm -rf *.tar.gz &&
rm -rf frp
${FRP_VERSION}_linux_amd64

VOLUME /frp
CMD /frps -c /frp/frps.ini

希望新建一个Dockerfile文件,方便自动化构建!

<!-- gh-comment-id:508368363 --> @Galaxyobe commented on GitHub (Jul 4, 2019): FROM alpine:latest WORKDIR / ENV FRP_VERSION 0.27.0 RUN set -x && \ wget --no-check-certificate https://github.com/fatedier/frp/releases/download/v${FRP_VERSION}/frp_${FRP_VERSION}_linux_amd64.tar.gz && \ tar xzf frp_${FRP_VERSION}_linux_amd64.tar.gz && \ cd frp_${FRP_VERSION}_linux_amd64 && \ mkdir /frp && \ mv frps /frps && \ mv frps.ini /frp/frps.ini && \ cd .. && \ rm -rf *.tar.gz && \ rm -rf frp_${FRP_VERSION}_linux_amd64 VOLUME /frp CMD /frps -c /frp/frps.ini 希望新建一个Dockerfile文件,方便自动化构建!
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: github-starred/frp#1032
No description provided.