Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
JustAnotherArchivist 398726f73e Initial commit 1 anno fa
Dockerfile Initial commit 1 anno fa
README.md Initial commit 1 anno fa
disable-dnspython.patch Initial commit 1 anno fa
disable-ws-client.patch Initial commit 1 anno fa
entrypoint-jaa Initial commit 1 anno fa

README.md

A grab-site Docker image by JAA

Intended for use without a gs-server, so the WebSocket connection is disabled entirely.

docker build -t grab-site-jaa:latest .
docker run --rm -d -v $(pwd)/data:/data:rw grab-site-jaa:latest --1 https://example.org/

Tor

This image includes support for grabbing through Tor:

  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
  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
  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/