dfw
dfw copied to clipboard
Docker Firewall Framework, written in Rust
Bumps [serde](https://github.com/serde-rs/serde) from 1.0.140 to 1.0.142. Release notes Sourced from serde's releases. v1.0.142 Add keywords to crates.io metadata v1.0.141 Add no-std category to crates.io metadata Commits abb2a84 Release 1.0.142 a31d0be...
Bumps [libc](https://github.com/rust-lang/libc) from 0.2.126 to 0.2.127. Commits 24bab07 libc 0.2.127 4bfd852 Auto merge of #2854 - pabigot:pabigot/20220729a, r=JohnTitor f4f0cdb linux: add TFD_TIMER_CANCEL_ON_SET constant d90fcbf Auto merge of #2853 - youknowone:ios-memmem,...
Bumps [paste](https://github.com/dtolnay/paste) from 1.0.7 to 1.0.8. Release notes Sourced from paste's releases. 1.0.8 Add categories to crates.io metadata Commits 1b3689d Release 1.0.8 bf23625 Update keywords in crates.io metadata a2e9d73 Add...
Bumps [time](https://github.com/time-rs/time) from 0.3.11 to 0.3.12. Release notes Sourced from time's releases. v0.3.12 See the changelog for details. Changelog Sourced from time's changelog. 0.3.12 [2022-08-01] Added js-sys now supports obtaining...
- [ ] Look into getting #524 merged. - [ ] Comment on and close #411. - [x] Probably retarget #277 to a different release/milestone.
Scenario: 1. Create a container providing some service under a non-published port, e.g. with the following `docker-compose.yml`: ```yaml version: '2' services: whoami: image: containous/whoami:latest command: "--port 8081" ``` Start the...
When starting dfw as a local container (i.e. through `docker run`) on a node that is joined to Docker Swarm, it fails with the following error: ``` Apr 16 19:12:27.273...
Currently we only build the `x86_64` static musl-binary when we build a release. Since the Docker image [now supports](https://github.com/pitkley/dfw/pull/525) multiple architectures, building and attaching these binaries to the release would...
Let say, we have a rule to allow container1 access internet ```toml [container_to_wider_world] default_policy = "reject" [[container_to_wider_world.rules]] network = "internal" verdict = "accept" src_container = "container1" ``` Inside the container1,...