From 67b6eb73579c232de016200b6a14b556da378f61 Mon Sep 17 00:00:00 2001 From: BroodjeAap Date: Sat, 4 Mar 2023 12:40:39 +0000 Subject: [PATCH] added tor compose example --- docs/compose/tor.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 docs/compose/tor.yml diff --git a/docs/compose/tor.yml b/docs/compose/tor.yml new file mode 100644 index 0000000..52cc62d --- /dev/null +++ b/docs/compose/tor.yml @@ -0,0 +1,16 @@ +version: "3" + +services: + app: + image: ghcr.io/broodjeaap/go-watch:latest + container_name: go-watch + environment: + - HTTP_PROXY=http://tor-privoxy:8118 + - HTTPS_PROXY=http://tor-privoxy:8118 + volumes: + - ./tmp:/config + ports: + - "8080:8080" + tor-privoxy: + image: dockage/tor-privoxy + container_name: tor-privoxy \ No newline at end of file