Merge pull request #19 from BokilaLin/master

This commit is contained in:
Peter Dave Hello 2020-05-21 20:49:46 +08:00 committed by GitHub
commit 1743e2d50a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -15,6 +15,6 @@ COPY torrc /etc/tor/
HEALTHCHECK --timeout=10s --start-period=60s \
CMD curl --fail --socks5-hostname localhost:9150 -I -L 'https://www.facebookcorewwwi.onion/' || exit 1
EXPOSE 53 9150
EXPOSE 53/udp 9150/tcp
CMD ["/usr/bin/tor", "-f", "/etc/tor/torrc"]

View file

@ -6,6 +6,6 @@ services:
container_name: tor-socks-proxy
image: peterdavehello/tor-socks-proxy:latest
ports:
- "127.0.0.1:53:53"
- "127.0.0.1:9150:9150"
- "127.0.0.1:53:53/udp"
- "127.0.0.1:9150:9150/tcp"
restart: unless-stopped