diff --git a/Dockerfile b/Dockerfile index 2270c58..d354313 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"] diff --git a/docker-compose.yml b/docker-compose.yml index 8e16d36..b1bd8cc 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -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