mirror of
https://github.com/fphammerle/docker-tor-proxy.git
synced 2025-10-27 02:43:35 +01:00
Compare commits
17 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 31a69d9d90 | |||
| b26c721e60 | |||
| fc3f461cdd | |||
| 4bdd61e3b2 | |||
| 5a9d489a1d | |||
| db1f87c85c | |||
| 0cf3a5f284 | |||
| 2cb4dfeb05 | |||
| e3d69cb61c | |||
| 58fe2f7c03 | |||
| e17905a023 | |||
| dfb3bce8c7 | |||
| 99b6bc5bff | |||
| a99aab74ab | |||
| 3900d94aa4 | |||
| 958016fd7c | |||
| 46e38ace3b |
@@ -1,3 +1,5 @@
|
||||
# sync with https://github.com/fphammerle/docker-onion-service/blob/master/.github/dependabot.yml
|
||||
|
||||
version: 2
|
||||
|
||||
updates:
|
||||
@@ -6,5 +8,11 @@ updates:
|
||||
schedule:
|
||||
interval: weekly
|
||||
day: friday
|
||||
- package-ecosystem: github-actions
|
||||
directory: /
|
||||
# > YAML aliases are not supported
|
||||
schedule:
|
||||
interval: weekly
|
||||
day: friday
|
||||
|
||||
# https://docs.github.com/en/free-pro-team@latest/github/administering-a-repository/configuration-options-for-dependency-updates
|
||||
|
||||
@@ -0,0 +1,26 @@
|
||||
# sync with https://github.com/fphammerle/docker-onion-service/blob/master/.github/workflows/container-image.yml
|
||||
|
||||
name: container image
|
||||
|
||||
on:
|
||||
push:
|
||||
pull_request:
|
||||
schedule:
|
||||
- cron: '0 20 * * 5'
|
||||
|
||||
jobs:
|
||||
docker-build:
|
||||
runs-on: ubuntu-20.04
|
||||
steps:
|
||||
- uses: docker/setup-qemu-action@v1.2.0
|
||||
- uses: docker/setup-buildx-action@v1.5.1
|
||||
# > By default, this action uses the Git context so you don't need to use
|
||||
# > the actions/checkout action to checkout the repository because this
|
||||
# > will be done directly by buildkit. [...]
|
||||
# > any file mutation in the steps that precede [...] will be ignored
|
||||
# https://github.com/marketplace/actions/build-and-push-docker-images
|
||||
- uses: docker/build-push-action@v2.7.0
|
||||
with:
|
||||
platforms: |
|
||||
linux/amd64
|
||||
linux/arm/v7
|
||||
+11
-1
@@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [4.5.0] - 2021-09-06
|
||||
### Added
|
||||
- added ability to select exit nodes explicitly via `EXIT_NODES` environment variable
|
||||
|
||||
## [4.4.0] - 2021-07-07
|
||||
### Added
|
||||
- added ability to exclude exit nodes via `EXCLUDE_EXIT_NODES` environment variable
|
||||
|
||||
## [4.3.1] - 2021-05-15
|
||||
### Fixed
|
||||
- create prerouting chain if not already created by container runtime
|
||||
@@ -79,7 +87,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
### Added
|
||||
- tor socks5 & DNS proxy
|
||||
|
||||
[Unreleased]: https://github.com/fphammerle/docker-tor-proxy/compare/v4.3.1...HEAD
|
||||
[Unreleased]: https://github.com/fphammerle/docker-tor-proxy/compare/v4.5.0...HEAD
|
||||
[4.5.0]: https://github.com/fphammerle/docker-tor-proxy/compare/v4.4.0...v4.5.0
|
||||
[4.4.0]: https://github.com/fphammerle/docker-tor-proxy/compare/v4.3.1...v4.4.0
|
||||
[4.3.1]: https://github.com/fphammerle/docker-tor-proxy/compare/v4.3.0...v4.3.1
|
||||
[4.3.0]: https://github.com/fphammerle/docker-tor-proxy/compare/v4.2.0...v4.3.0
|
||||
[4.2.0]: https://github.com/fphammerle/docker-tor-proxy/compare/v4.1.0...v4.2.0
|
||||
|
||||
+7
-4
@@ -1,8 +1,8 @@
|
||||
FROM docker.io/alpine:3.13.5
|
||||
FROM docker.io/alpine:3.14.2
|
||||
|
||||
# nftables + dependencies add 2.3MB to image
|
||||
ARG TOR_PACKAGE_VERSION=0.4.4.8-r0
|
||||
ARG NFTABLES_PACKAGE_VERSION=0.9.7-r0
|
||||
ARG TOR_PACKAGE_VERSION=0.4.5.10-r0
|
||||
ARG NFTABLES_PACKAGE_VERSION=0.9.9-r0
|
||||
RUN apk add --no-cache \
|
||||
nftables=$NFTABLES_PACKAGE_VERSION \
|
||||
tor=$TOR_PACKAGE_VERSION
|
||||
@@ -11,6 +11,7 @@ VOLUME /var/lib/tor
|
||||
#RUN apk add --no-cache \
|
||||
# less \
|
||||
# man-db \
|
||||
# strace \
|
||||
# tor-doc=$TOR_PACKAGE_VERSION
|
||||
#ENV PAGER=less
|
||||
|
||||
@@ -18,7 +19,9 @@ EXPOSE 9050/tcp
|
||||
EXPOSE 9053/udp
|
||||
COPY torrc.template entrypoint.sh /
|
||||
RUN chmod -c a+rX /torrc.template /entrypoint.sh
|
||||
ENV SOCKS_TIMEOUT_SECONDS=
|
||||
ENV SOCKS_TIMEOUT_SECONDS= \
|
||||
EXIT_NODES= \
|
||||
EXCLUDE_EXIT_NODES=
|
||||
ENTRYPOINT ["/entrypoint.sh"]
|
||||
|
||||
# entrypoint.sh drops privileges after configuring nftables for transparent proxy
|
||||
|
||||
@@ -48,6 +48,18 @@ sudo iptables -A OUTPUT ! -o lo -j REJECT --reject-with icmp-admin-prohibited
|
||||
$ sudo docker run -e SOCKS_TIMEOUT_SECONDS=60 …
|
||||
```
|
||||
|
||||
### Select Exit Nodes
|
||||
|
||||
```sh
|
||||
$ sudo docker run -e EXIT_NODES=1.2.3.4,1.2.3.5,{at} …
|
||||
```
|
||||
|
||||
### Exclude Exit Nodes
|
||||
|
||||
```sh
|
||||
$ sudo docker run -e EXCLUDE_EXIT_NODES=1.2.3.4,1.2.3.5 …
|
||||
```
|
||||
|
||||
### Show Circuits
|
||||
|
||||
```sh
|
||||
|
||||
+3
-1
@@ -9,6 +9,8 @@ services:
|
||||
image: fphammerle/tor-proxy
|
||||
environment:
|
||||
SOCKS_TIMEOUT_SECONDS: 30
|
||||
#EXIT_NODES: '1.2.3.4,1.2.3.5,{at}'
|
||||
#EXCLUDE_EXIT_NODES: '{xx},{yy},1.2.3.4,128.0.0.0/1'
|
||||
volumes:
|
||||
- type: volume
|
||||
source: data
|
||||
@@ -19,7 +21,7 @@ services:
|
||||
tmpfs:
|
||||
# nosuid,nodev,noexec added by default
|
||||
mode: '1777'
|
||||
size: 4k
|
||||
size: 5k
|
||||
read_only: yes
|
||||
ports:
|
||||
- '127.0.0.1:9050:9050/tcp'
|
||||
|
||||
@@ -20,4 +20,15 @@ else
|
||||
sed -e "s/{socks_timeout_seconds}/$SOCKS_TIMEOUT_SECONDS/" /torrc.template > /tmp/torrc
|
||||
fi
|
||||
|
||||
if [ -z "$EXIT_NODES" ]; then
|
||||
sed --in-place -e '/{exit_nodes}/d' /tmp/torrc
|
||||
else
|
||||
sed --in-place -e "s#{exit_nodes}#$EXIT_NODES#" /tmp/torrc
|
||||
fi
|
||||
if [ -z "$EXCLUDE_EXIT_NODES" ]; then
|
||||
sed --in-place -e '/{exclude_exit_nodes}/d' /tmp/torrc
|
||||
else
|
||||
sed --in-place -e "s#{exclude_exit_nodes}#$EXCLUDE_EXIT_NODES#" /tmp/torrc
|
||||
fi
|
||||
|
||||
exec "$@"
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
https://git.alpinelinux.org/aports/log/community/tor
|
||||
@@ -26,5 +26,9 @@ SocksTimeout {socks_timeout_seconds}
|
||||
# https://github.com/mitmproxy/mitmproxy/blob/v6.0.2/mitmproxy/platform/linux.py#L27
|
||||
TransPort 0.0.0.0:9040 IsolateClientAddr IsolateClientProtocol
|
||||
|
||||
# > list of identity fingerprints, country codes, and address patterns
|
||||
ExitNodes {exit_nodes}
|
||||
ExcludeExitNodes {exclude_exit_nodes}
|
||||
|
||||
# try to
|
||||
HardwareAccel 1
|
||||
|
||||
Reference in New Issue
Block a user