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
- Host: GitHub
- URL: https://github.com/aetharr/rpi-znc
- Owner: aetharr
- Created: 2017-02-12T13:18:50.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-02-15T20:09:31.000Z (over 8 years ago)
- Last Synced: 2025-01-19T15:26:10.933Z (4 months ago)
- Topics: docker, docker-image, irc, irc-bouncer, znc
- Language: Shell
- Homepage:
- Size: 3.91 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.