add docker-compose file

This commit is contained in:
2021-11-24 01:14:13 +01:00
parent 02bf42ab99
commit 86d35936af
2 changed files with 19 additions and 7 deletions

View File

@@ -22,16 +22,17 @@ for i in $(seq 1 100):
- Or use the following docker-compose file - Or use the following docker-compose file
```yaml ```yaml
version: '3' ---
version: '3'
services: services:
torbrowser: tor_browser:
image: browser_test:latest image: browser_test:latest
ports: ports:
- 5800:5800 - 5800:5800
environment: environment:
- TARGET_URL="https://google.com" - TARGET_URL="https://google.com"
restart: never restart: unless-stopped
``` ```
## Oh no, now I have xyz randomly named containers running - how to stop them? ## Oh no, now I have xyz randomly named containers running - how to stop them?

11
docker-compose.yml Normal file
View File

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