This is a Dockerfile repository for Limnoria, an IRC bot based on Supybot. The base is the official Python image using the 3.6-alpine tag (Python 3.6 on Alpine Linux). You'll probably need Docker to have any real fun.
If you just want the image an automated build is available on the Docker Hub. You can simply run:
docker run -v ~/limnoria:/data --rm -it dpyro/docker-limnoriaTo create an image tagged limnoria in the current directory:
docker build -t limnoria .docker run -v ~/limnoria:/data --rm -it limnoriawill run a ephemeral container from the limnoria image, mounting ~/limnoria to the data volume located at /data and connecting a tty.
The startup script will run a configuration (*.conf) if it is present. If there are multiple configurations, it will bail out. You will need to configure the bot using the built-in wizard if there is no configuration mounted.