update frpc version.
Some checks failed
Deploy Docker Images / Docusaurus build and Server deploy (push) Failing after 3m9s

This commit is contained in:
amass 2024-09-30 01:52:04 +08:00
parent b947b9bedf
commit 35e510aabb
2 changed files with 7 additions and 1 deletions

View File

@ -25,4 +25,6 @@ RUN cd /root \
&& rm frp_${FRP_VERSION}_linux_amd64.tar.gz \
&& rm -rf frp_${FRP_VERSION}_linux_amd64/
ENTRYPOINT if [ -d /app ]; then cd /app && openresty -p /app; fi; /usr/bin/frpc -c /etc/frp/frpc.toml
ENTRYPOINT if [ -d /app ]; then cd /app && openresty -p /app; fi; /usr/bin/frpc -c /etc/frp/frpc.toml
# docker build --progress=tty -f frpc.dockerfile -t frp-by1.wwvvww.cn:45288/frpc:0.60.0 .

View File

@ -18,6 +18,10 @@ function build() {
elif [[ $DOCKERFILE == *"ubuntu1604.dockerfile" ]]; then
docker build -f $DOCKERFILE -t frp-by1.wwvvww.cn:45288/ubuntu_dev:16.04 .
docker push frp-by1.wwvvww.cn:45288/ubuntu_dev:16.04
elif [[ $DOCKERFILE == *"frpc.dockerfile" ]]; then
FRP_VERSION=$(grep 'ENV FRP_VERSION' frpc.dockerfile | awk '{print $3}')
docker build -f $DOCKERFILE -t frp-by1.wwvvww.cn:45288/frpc:$FRP_VERSION .
docker push frp-by1.wwvvww.cn:45288/frpc:$FRP_VERSION
else
echo "not found steps for build $DOCKERFILE ..."
fi