Skip to content

Commit 634af3f

Browse files
committed
Fix CI Docker build and bump version to 0.2.3
1 parent f6bd20a commit 634af3f

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/docker.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
id: docker_build
4141
uses: docker/build-push-action@v2
4242
with:
43-
platforms: linux/amd64,linux/arm64,linux/arm/v7
43+
platforms: linux/amd64,linux/arm64
4444
push: true
4545
tags: ${{ steps.meta.outputs.tags }}
4646
labels: ${{ steps.meta.outputs.labels }}

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bore-cli"
3-
version = "0.2.2"
3+
version = "0.2.3"
44
authors = ["Eric Zhang <[email protected]>"]
55
license = "MIT"
66
description = "A modern, simple TCP tunnel in Rust that exposes local ports to a remote server, bypassing standard NAT connection firewalls."

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ You can build the `bore` CLI command from source using [Cargo](https://doc.rust-
2929
cargo install bore-cli
3030
```
3131

32-
We also publish versioned Docker images for each release. Each image is built for AMD 64-bit, Arm 64-bit, and Armv7 architectures. They're tagged with the specific version and allow you to run the statically-linked `bore` binary from a minimal "scratch" container.
32+
We also publish versioned Docker images for each release. Each image is built for AMD 64-bit and Arm 64-bit architectures. They're tagged with the specific version and allow you to run the statically-linked `bore` binary from a minimal "scratch" container.
3333

3434
```shell
3535
docker run -it --init --rm --network host ekzhang/bore <ARGS>
@@ -52,7 +52,7 @@ You can optionally pass in a `--port` option to pick a specific port on the remo
5252
The full options are shown below.
5353

5454
```shell
55-
bore-local 0.2.2
55+
bore-local 0.2.3
5656
Starts a local proxy to the remote server
5757

5858
USAGE:
@@ -82,7 +82,7 @@ That's all it takes! After the server starts running at a given address, you can
8282
The full options for the `bore server` command are shown below.
8383
8484
```shell
85-
bore-server 0.2.2
85+
bore-server 0.2.3
8686
Runs the remote proxy server
8787
8888
USAGE:

0 commit comments

Comments
 (0)