An open API service indexing awesome lists of open source software.

https://github.com/aetharr/rpi-znc

A build of ZNC (IRC bouncer) for Raspberry Pi including support for SSL and UTF-8 Charactersets based on Raspbian Linux
https://github.com/aetharr/rpi-znc

docker docker-image irc irc-bouncer znc

Last synced: 2 months ago
JSON representation

A build of ZNC (IRC bouncer) for Raspberry Pi including support for SSL and UTF-8 Charactersets based on Raspbian Linux

Awesome Lists containing this project

README

        

This build of ZNC is simple to setup, it already has a config file built in that you can tweak after the fact if you create a volume (Use of a volume is not required, but is recommended).

This image contains the same features as my [other ZNC container](https://github.com/aetharr/rpi-znc-alpine), but is based on a Raspbian Linux image.

This has been tested on a Raspberry Pi 3 running Docker 1.11.1

## Running the bouncer
`docker run -d -p 8080:8080 aetharr/rpi-znc`

## Regarding the Config File
When the container has been run for the first time, it will detect whether there is a config file in the appropriate place and if not, add the default one.
This allows you to specify one using a volume for easier access if you wish. It will not create one if a `ZNC.conf` file already exists.

## Using a Volume
If you'd like to map the ZNC config directory to one of your choosing, you can make use of a volume, simple amend the command as such.
`docker run -d -v $HOME/znc:/home/znc/.znc -p 8080:8080 aetharr/rpi-znc`

## Going Forward
To configure the bouncer while running, visit `http://:8080`
The default login details are:
`u: admin p: password`

To connect an IRC client to the bouncer, you can connect to `http://:8080` too for simplicity.