This repository packages Wohnungsbot with NoVNC to make it run in docker and still be able to interact with it for CAPTCHA solving.
Using the prebuilt image:
docker run -td -p 6080:6080 wyrrrd/wohnungsbot:latest
The interface is then available under http://privateip:6080
If the bot gets stuck, press ESC to restart it.
You can also build it yourself. The data is generally automatically persisted in an unnamed docker volume, but that volume can also be named.
docker build -t wohnungsbot https://github.com/Wyrrrd/docker-wohnungsbot.git
docker run -td -p 6080:6080 -v wohnungsbot_data:/data wohnungsbot
You can even build a specific tag of Wohnungsbot by using the following syntax.
docker build -t wohnungsbot --build-arg WB_VERSION=1.6.0 https://github.com/Wyrrrd/docker-wohnungsbot.git
If you are limiting the available memory for your containers, 500m should be enough. It is a GUI application after all.
This repository is licensed under AGPL-3.0. For the projects this repository depends on, see below.
- Wohnungsbot (License, no modifications)
- NoVNC (License, vnc_lite.html modified by replacements.sed during build)
- Websockify (License, no modifications)
- Original docker-novnc project (No license included, therefore all rights reserved by the author(s), forked basically for credits and inspiration, code widely replaced)
- Ubuntu Docker Image (License, no modifications)