31 lines
1.1 KiB
Markdown
31 lines
1.1 KiB
Markdown
docker-wohnungsbot
|
|
============
|
|
|
|
## This repository is still a draft, untested, do not use!
|
|
|
|
This repository packages [Wohnungsbot](https://github.com/neopostmodern/wohnungsbot) with [NoVNC](http://kanaka.github.io/noVNC/) to make to run in docker and still be able to interact with it for CAPTCHA solving.
|
|
|
|
## How to use
|
|
|
|
### Default use case
|
|
```
|
|
docker build -t wohnungsbot https://github.com/Wyrrrd/docker-wohnungsbot.git
|
|
docker run -td -p 6080:6080 wohnungsbot
|
|
```
|
|
|
|
The interface is then available under http://privateip:6080
|
|
|
|
### Advanced use case
|
|
|
|
You can build a specific tag of [Wohnungsbot](https://github.com/neopostmodern/wohnungsbot) by using the following syntax. The data is generally automatically persisted in a docker volume, but that volume can also be named.
|
|
|
|
```
|
|
docker build -t wohnungsbot --build-arg WG_VERSION=1.4.0 https://github.com/Wyrrrd/docker-wohnungsbot.git
|
|
docker run -td -p 6080:6080 -v wohnungsbot_data:/data wohnungsbot
|
|
```
|
|
|
|
## Credits
|
|
|
|
* [Wohnungsbot](https://github.com/neopostmodern/wohnungsbot)
|
|
* [NoVNC](http://kanaka.github.io/noVNC/)
|
|
* [Original docker-novnc project](https://github.com/paimpozhil/docker-novnc) |