Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

il y a 2 ans
12345678910111213
  1. A grab-site Docker image by JAA
  2. Intended for use without a gs-server, so the WebSocket connection is disabled entirely.
  3. docker build -t grab-site-jaa:latest .
  4. docker run --rm -d -v $(pwd)/data:/data:rw grab-site-jaa:latest --1 https://example.org/
  5. # Tor
  6. This image includes support for grabbing through Tor:
  7. 1. Create a Docker bridge network for connecting to an isolated Tor proxy image: `docker network create --driver bridge --subnet 10.91.50.0/24 tor`
  8. 2. Run a Tor proxy in that network with a specified IP, e.g. `docker run -d --restart=always --name tor-socks-proxy --network tor --ip 10.91.50.2 peterdavehello/tor-socks-proxy:latest`
  9. 3. Run this image while specifying the relevant environment variables: `docker run --rm -d -v $(pwd)/data:/data:rw -e TORSOCKS_TOR_ADDRESS=10.91.50.2 -e TORSOCKS_TOR_PORT=9150 --network tor grab-site-jaa:latest --1 https://check.torproject.org/`