Fabian Peter Hammerle
2021-03-03 14:07:52 +01:00
parent 8ae9e9e5b7
commit 677e9db8e2
2 changed files with 10 additions and 0 deletions
+4
View File
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
### Added
- enabled transparent proxy, listening on port `9040` (requires netfilter rules)
- image labels:
- `org.opencontainers.image.revision` (git commit hash via build arg)
- `org.opencontainers.image.source` (repo url)
- `org.opencontainers.image.title`
## [4.0.0] - 2021-01-01
### Changed
+6
View File
@@ -27,3 +27,9 @@ HEALTHCHECK CMD \
| grep -q network-liveness=up \
&& nslookup -port=9053 google.com localhost | grep -v NXDOMAIN | grep -q google \
|| exit 1
# https://github.com/opencontainers/image-spec/blob/v1.0.1/annotations.md
ARG REVISION=
LABEL org.opencontainers.image.title="tor socks, dns & transparent proxy" \
org.opencontainers.image.source="https://github.com/fphammerle/docker-tor-proxy" \
org.opencontainers.image.revision="$REVISION"