From fdc8b88482177662e68ebd14758d817adbf47179 Mon Sep 17 00:00:00 2001 From: thomas Date: Sun, 11 May 2025 20:43:41 +0000 Subject: [PATCH] =?UTF-8?q?tor/docker-compose.yml=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tor/docker-compose.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 tor/docker-compose.yml diff --git a/tor/docker-compose.yml b/tor/docker-compose.yml new file mode 100644 index 0000000..f48683a --- /dev/null +++ b/tor/docker-compose.yml @@ -0,0 +1,19 @@ +services: + + torbrowser: + image: domistyle/tor-browser:latest + container_name: ${CONTAINER_NAME:-torbrowser} + restart: unless-stopped + ports: + - ${PORT_WEB:-5800}:5800 # Provides a web interface to access the Tor browser + #- 5900:5900 # Provides direct access to the VNC server; optional +# expose: +# - 5800 +# - 5900 + environment: + #- DISPLAY_WIDTH=1280 # default; optional + #- DISPLAY_HEIGHT=768 # default; optional + #- KEEP_APP_RUNNING=0 # default; optional + - TZ=Europe/Berlin + #volumes: + # - ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/torbrowser/data:/app/Browser/TorBrowser/Data/Tor # optional, just to speed up container recreation \ No newline at end of file