From a7bab8cbdfb7a9c38423c541b657883d76cd941c Mon Sep 17 00:00:00 2001 From: sn0wdr1am Date: Fri, 13 Oct 2023 11:51:26 +0800 Subject: [PATCH] Configuration: We now support TOML, YAML, and JSON for configuration. Please note that INI is deprecated and will be removed in future releases. New features will only be available in TOML, YAML, or JSON. Users wanting these new features should switch their configuration format accordingly. #2521 --- README.md | 4 ++-- frpc/amd64/Dockerfile | 4 ++-- frpc/arm32v6/Dockerfile | 4 ++-- frpc/arm32v7/Dockerfile | 4 ++-- frpc/arm64v8/Dockerfile | 4 ++-- frpc/i386/Dockerfile | 4 ++-- frps/amd64/Dockerfile | 4 ++-- frps/arm32v6/Dockerfile | 4 ++-- frps/arm32v7/Dockerfile | 4 ++-- frps/arm64v8/Dockerfile | 4 ++-- frps/i386/Dockerfile | 4 ++-- 11 files changed, 22 insertions(+), 22 deletions(-) diff --git a/README.md b/README.md index 60f1069..3e4faba 100644 --- a/README.md +++ b/README.md @@ -14,13 +14,13 @@ Docker Image packaging for Frp. start frps ```bash -docker run --restart=always --network host -d -v /etc/frp/frps.ini:/etc/frp/frps.ini --name frps snowdreamtech/frps +docker run --restart=always --network host -d -v /etc/frp/frps.toml:/etc/frp/frps.toml --name frps snowdreamtech/frps ``` start frpc ```bash -docker run --restart=always --network host -d -v /etc/frp/frpc.ini:/etc/frp/frpc.ini --name frpc snowdreamtech/frpc +docker run --restart=always --network host -d -v /etc/frp/frpc.toml:/etc/frp/frpc.toml --name frpc snowdreamtech/frpc ``` ## Quick reference diff --git a/frpc/amd64/Dockerfile b/frpc/amd64/Dockerfile index 63b1de3..b16fd91 100644 --- a/frpc/amd64/Dockerfile +++ b/frpc/amd64/Dockerfile @@ -10,9 +10,9 @@ RUN cd /root \ && cd frp_${FRP_VERSION}_linux_amd64/ \ && cp frpc /usr/bin/ \ && mkdir -p /etc/frp \ - && cp frpc.ini /etc/frp \ + && cp frpc.toml /etc/frp \ && cd /root \ && rm frp_${FRP_VERSION}_linux_amd64.tar.gz \ && rm -rf frp_${FRP_VERSION}_linux_amd64/ -ENTRYPOINT /usr/bin/frpc -c /etc/frp/frpc.ini \ No newline at end of file +ENTRYPOINT /usr/bin/frpc -c /etc/frp/frpc.toml \ No newline at end of file diff --git a/frpc/arm32v6/Dockerfile b/frpc/arm32v6/Dockerfile index 8389d49..f62c421 100644 --- a/frpc/arm32v6/Dockerfile +++ b/frpc/arm32v6/Dockerfile @@ -10,9 +10,9 @@ RUN cd /root \ && cd frp_${FRP_VERSION}_linux_arm/ \ && cp frpc /usr/bin/ \ && mkdir -p /etc/frp \ - && cp frpc.ini /etc/frp \ + && cp frpc.toml /etc/frp \ && cd /root \ && rm frp_${FRP_VERSION}_linux_arm.tar.gz \ && rm -rf frp_${FRP_VERSION}_linux_arm/ -ENTRYPOINT /usr/bin/frpc -c /etc/frp/frpc.ini \ No newline at end of file +ENTRYPOINT /usr/bin/frpc -c /etc/frp/frpc.toml \ No newline at end of file diff --git a/frpc/arm32v7/Dockerfile b/frpc/arm32v7/Dockerfile index a83653c..70c4083 100644 --- a/frpc/arm32v7/Dockerfile +++ b/frpc/arm32v7/Dockerfile @@ -10,9 +10,9 @@ RUN cd /root \ && cd frp_${FRP_VERSION}_linux_arm/ \ && cp frpc /usr/bin/ \ && mkdir -p /etc/frp \ - && cp frpc.ini /etc/frp \ + && cp frpc.toml /etc/frp \ && cd /root \ && rm frp_${FRP_VERSION}_linux_arm.tar.gz \ && rm -rf frp_${FRP_VERSION}_linux_arm/ -ENTRYPOINT /usr/bin/frpc -c /etc/frp/frpc.ini \ No newline at end of file +ENTRYPOINT /usr/bin/frpc -c /etc/frp/frpc.toml \ No newline at end of file diff --git a/frpc/arm64v8/Dockerfile b/frpc/arm64v8/Dockerfile index 9e0c3dd..f59e2ed 100644 --- a/frpc/arm64v8/Dockerfile +++ b/frpc/arm64v8/Dockerfile @@ -10,9 +10,9 @@ RUN cd /root \ && cd frp_${FRP_VERSION}_linux_arm64/ \ && cp frpc /usr/bin/ \ && mkdir -p /etc/frp \ - && cp frpc.ini /etc/frp \ + && cp frpc.toml /etc/frp \ && cd /root \ && rm frp_${FRP_VERSION}_linux_arm64.tar.gz \ && rm -rf frp_${FRP_VERSION}_linux_arm64/ -ENTRYPOINT /usr/bin/frpc -c /etc/frp/frpc.ini \ No newline at end of file +ENTRYPOINT /usr/bin/frpc -c /etc/frp/frpc.toml \ No newline at end of file diff --git a/frpc/i386/Dockerfile b/frpc/i386/Dockerfile index d92ea8a..14aa1f2 100644 --- a/frpc/i386/Dockerfile +++ b/frpc/i386/Dockerfile @@ -10,9 +10,9 @@ RUN cd /root \ && cd frp_${FRP_VERSION}_linux_386/ \ && cp frpc /usr/bin/ \ && mkdir -p /etc/frp \ - && cp frpc.ini /etc/frp \ + && cp frpc.toml /etc/frp \ && cd /root \ && rm frp_${FRP_VERSION}_linux_386.tar.gz \ && rm -rf frp_${FRP_VERSION}_linux_386/ -ENTRYPOINT /usr/bin/frpc -c /etc/frp/frpc.ini \ No newline at end of file +ENTRYPOINT /usr/bin/frpc -c /etc/frp/frpc.toml \ No newline at end of file diff --git a/frps/amd64/Dockerfile b/frps/amd64/Dockerfile index c2ada8a..ec18195 100644 --- a/frps/amd64/Dockerfile +++ b/frps/amd64/Dockerfile @@ -10,9 +10,9 @@ RUN cd /root \ && cd frp_${FRP_VERSION}_linux_amd64/ \ && cp frps /usr/bin/ \ && mkdir -p /etc/frp \ - && cp frps.ini /etc/frp \ + && cp frps.toml /etc/frp \ && cd /root \ && rm frp_${FRP_VERSION}_linux_amd64.tar.gz \ && rm -rf frp_${FRP_VERSION}_linux_amd64/ -ENTRYPOINT /usr/bin/frps -c /etc/frp/frps.ini \ No newline at end of file +ENTRYPOINT /usr/bin/frps -c /etc/frp/frps.toml \ No newline at end of file diff --git a/frps/arm32v6/Dockerfile b/frps/arm32v6/Dockerfile index 2037e0b..4cfa100 100644 --- a/frps/arm32v6/Dockerfile +++ b/frps/arm32v6/Dockerfile @@ -10,9 +10,9 @@ RUN cd /root \ && cd frp_${FRP_VERSION}_linux_arm/ \ && cp frps /usr/bin/ \ && mkdir -p /etc/frp \ - && cp frps.ini /etc/frp \ + && cp frps.toml /etc/frp \ && cd /root \ && rm frp_${FRP_VERSION}_linux_arm.tar.gz \ && rm -rf frp_${FRP_VERSION}_linux_arm/ -ENTRYPOINT /usr/bin/frps -c /etc/frp/frps.ini \ No newline at end of file +ENTRYPOINT /usr/bin/frps -c /etc/frp/frps.toml \ No newline at end of file diff --git a/frps/arm32v7/Dockerfile b/frps/arm32v7/Dockerfile index 3fc7343..d026a04 100644 --- a/frps/arm32v7/Dockerfile +++ b/frps/arm32v7/Dockerfile @@ -10,9 +10,9 @@ RUN cd /root \ && cd frp_${FRP_VERSION}_linux_arm/ \ && cp frps /usr/bin/ \ && mkdir -p /etc/frp \ - && cp frps.ini /etc/frp \ + && cp frps.toml /etc/frp \ && cd /root \ && rm frp_${FRP_VERSION}_linux_arm.tar.gz \ && rm -rf frp_${FRP_VERSION}_linux_arm/ -ENTRYPOINT /usr/bin/frps -c /etc/frp/frps.ini \ No newline at end of file +ENTRYPOINT /usr/bin/frps -c /etc/frp/frps.toml \ No newline at end of file diff --git a/frps/arm64v8/Dockerfile b/frps/arm64v8/Dockerfile index a145d86..8c06421 100644 --- a/frps/arm64v8/Dockerfile +++ b/frps/arm64v8/Dockerfile @@ -10,9 +10,9 @@ RUN cd /root \ && cd frp_${FRP_VERSION}_linux_arm64/ \ && cp frps /usr/bin/ \ && mkdir -p /etc/frp \ - && cp frps.ini /etc/frp \ + && cp frps.toml /etc/frp \ && cd /root \ && rm frp_${FRP_VERSION}_linux_arm64.tar.gz \ && rm -rf frp_${FRP_VERSION}_linux_arm64/ -ENTRYPOINT /usr/bin/frps -c /etc/frp/frps.ini \ No newline at end of file +ENTRYPOINT /usr/bin/frps -c /etc/frp/frps.toml \ No newline at end of file diff --git a/frps/i386/Dockerfile b/frps/i386/Dockerfile index 28473d4..d7ccc0d 100644 --- a/frps/i386/Dockerfile +++ b/frps/i386/Dockerfile @@ -10,9 +10,9 @@ RUN cd /root \ && cd frp_${FRP_VERSION}_linux_386/ \ && cp frps /usr/bin/ \ && mkdir -p /etc/frp \ - && cp frps.ini /etc/frp \ + && cp frps.toml /etc/frp \ && cd /root \ && rm frp_${FRP_VERSION}_linux_386.tar.gz \ && rm -rf frp_${FRP_VERSION}_linux_386/ -ENTRYPOINT /usr/bin/frps -c /etc/frp/frps.ini \ No newline at end of file +ENTRYPOINT /usr/bin/frps -c /etc/frp/frps.toml \ No newline at end of file