Skip to content

Commit

Permalink
(cargo-release) version 1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pitkley committed Dec 13, 2020
1 parent 390a7a9 commit 74d10e4
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 9 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

## Unreleased

## 1.2.1 (2020-12-13)

* Fix incorrect handling of host-ports in wider-world-to-container rules.

## 1.2.0 (2020-07-13)
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dfw"
version = "1.2.1-alpha.0"
version = "1.2.1"
edition = "2018"
authors = ["Pit Kleyersburg <[email protected]>"]
license = "MIT/Apache-2.0"
Expand Down
6 changes: 3 additions & 3 deletions docs/GETTING-STARTED-iptables.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,13 +93,13 @@ You have a few options of running DFW:
### Using the official Docker image

```console
$ docker pull pitkley/dfw:1.2.0
$ docker pull pitkley/dfw:1.2.1
$ docker run -d \
--name=dfw \
-v /var/run/docker.sock:/var/run/docker.sock:ro \
-v /path/to/your/config:/config \
--net host --cap-add=NET_ADMIN \
pitkley/dfw:1.2.0 --firewall-backend iptables --config-path /config
pitkley/dfw:1.2.1 --firewall-backend iptables --config-path /config
```

This will download a lightweight image, coming in at under 10 MB, and subsequently run it using your configuration.
Expand All @@ -118,7 +118,7 @@ For this you need to first [install Rust][rustlang-install] and then install DFW
```console
$ cargo install dfw
$ dfw --help
dfw 1.2.0
dfw 1.2.1
Docker Firewall Framework, in Rust
...
```
Expand Down
6 changes: 3 additions & 3 deletions docs/GETTING-STARTED-nftables.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,13 +143,13 @@ You have two general options of running DFW:
### Using the official Docker image

```console
$ docker pull pitkley/dfw:1.2.0
$ docker pull pitkley/dfw:1.2.1
$ docker run -d \
--name=dfw \
-v /var/run/docker.sock:/var/run/docker.sock:ro \
-v /path/to/your/config:/config \
--net host --cap-add=NET_ADMIN \
pitkley/dfw:1.2.0 --config-path /config
pitkley/dfw:1.2.1 --config-path /config
```

This will download a lightweight image, coming in at under 10 MB, and subsequently run it using your configuration.
Expand All @@ -162,7 +162,7 @@ For this you need to first [install Rust][rustlang-install] and then install DFW
```console
$ cargo install dfw
$ dfw --help
dfw 1.2.0
dfw 1.2.1
Docker Firewall Framework, in Rust
...
```
Expand Down
2 changes: 1 addition & 1 deletion examples/reverseproxy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ docker run --rm \
-v /var/run/docker.sock:/var/run/docker.sock:ro \
-v dfw.toml:/config/dfw.toml \
--net host --cap-add=NET_ADMIN \
pitkley/dfw:1.2.0 --config-file /config/dfw.toml
pitkley/dfw:1.2.1 --config-file /config/dfw.toml
```

(*Please note:* DFW will use the nftables firewall backend by default. If you want to use iptables, provide the `--firewall-backend iptables` command-line argument.)
Expand Down

0 comments on commit 74d10e4

Please sign in to comment.