add docker-compose file
This commit is contained in:
@@ -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
11
docker-compose.yml
Normal 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
|
||||||
Reference in New Issue
Block a user