ssh-inspircd is an irc server that uses ssh access with weechat.
A username and password must be specified as environment variables, this is the admin account.
You will be prompted to change the password on first login.
By default it connects to the #general channel.
docker
$ docker run -e USERNAME=user -e PASSWORD=pass -p 2222:22 justjeffey/ssh-inspircd
docker-compose
version: '3'
services:
irc:
build: justjeffey/ssh-inspircd
ports:
- "22:22"
environment:
- TZ=Pacific/Auckland
- USERNAME=user
- PASSWORD=pass
Users can be created and deleted from within weechat by the admin user.
Add User
/add username password
Delete User
/del username
Content type
Image
Digest
Size
86.6 MB
Last updated
about 6 years ago
docker pull justjeffey/ssh-inspircd