diff --git a/README.md b/README.md index 8579b20..c0b5cf0 100644 --- a/README.md +++ b/README.md @@ -22,16 +22,17 @@ for i in $(seq 1 100): - Or use the following docker-compose file ```yaml -version: '3' +--- +version: '3' services: - torbrowser: + tor_browser: image: browser_test:latest - ports: - - 5800:5800 - environment: - - TARGET_URL="https://google.com" - restart: never + ports: + - 5800:5800 + environment: + - TARGET_URL="https://google.com" + restart: unless-stopped ``` ## Oh no, now I have xyz randomly named containers running - how to stop them? diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..2bf1f9f --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,11 @@ +--- + +version: '3' +services: + tor_browser: + image: browser_test:latest + ports: + - 5800:5800 + environment: + - TARGET_URL="https://google.com" + restart: unless-stopped