Skip to content(if available)orjump to list(if available)

Irssi: IRC Client in a Docker Image

Irssi: IRC Client in a Docker Image

21 comments

·September 17, 2025

allanrbo

This seems absurd. Just apt install irssi. Why Docker for such a simple self contained tiny app?

firefax

Reminds me of the "But I Don't Want To Cure Cancer. I Want To Turn People Into Dinosaurs" meme[1]

They don't want to apt install, they want to use docker :-)

[1] https://knowyourmeme.com/memes/but-i-dont-want-to-cure-cance...

neilv

I can guess a reason: persistence of your IRC server connection(s), across device sessions, and maybe switchable between devices. Without using an IRC bouncer.

So this this would a turnkey way to run this somewhere centralized and persistent, and then you connect to it however you connect to that Docker container (e.g., SSH, remote desktop of some kind).

Of course, a non-Docker way to achieve simple persistence would be to just run a character-terminal IRC client in an SSH-able shell account (or VPS or AWS EC2), inside a `screen` or `tmux` session that can be detached and reattached when SSH-ing in from whatever devices.

(Persistence of your IRC server connections means things like you can see what you missed in scrollback, you aren't being noisy in your channels with join and part messages, you preserve your channel operator status and other channel modes without relying on bots, and you aren't leaking so much info about your movements in real time to random crazy people who hang out in Internet chat rooms.)

(Also, early on, if your leet channels attracted trolls, remaining connected meant that whatever automated countermeasures your client had could help defend the channel. Also, the more people who had channel operator status, the harder it would be for an attacker who, say, "netsplit" to hack ops, to de-op them all, before a remaining op's scripts detected the mass-deop attack, and took out the attacker. Also, your persistence bouncer or shell account obscured your real IP address, so if an attacker targeted your client's IP addr but not your home addr, such as with a protocol or flood attack, you could more likely get back on quickly. Trolls were often annoying, but it was also cyberpunk satisfying when your channel made short work of them.)

nodja

For my homelab: portable state. I don't use this image specifically but I use many others.

I put docker-compose files in ~/configdata/_docker/

The docker-compose files always mount volumes inside the ~/configdata/ directory. So let's say irssi has a config directory to mount I'd mount it to ~/configdata/irssi/config/

Then I can just run a daily backup on ~/configdata/ using duplicati or whatever differential backup tool of your choice and be able to restore application state, easily move it to another server, etc.

crtasm

For software designed to run under your user account like irssi it's pretty much the same, look in ~/.config and ~/.local/share

alpb

Maintainers had a project where they ran everything in containers. The project had helped docker itself and the ecosystem by allowing some interesting software to be containerized.

CGamesPlay

My production k8s cluster doesn't have apt. Now I can deploy this!

keyle

I ran irssi for years. I agree... Maybe being paranoid about security?

Smar

Containers are not the best option for security. VMs and/or a MAC are better.

squigz

Better yet, apt install weechat!

vorpalhex

Poor mans abstraction. Docker swarm makes a cheap node pool from random hardware. Compose makes all your apps and config live in git.

You don't _need_ docker, but if you are already set up for it then it's a boon. Adding an app for me to be very available across a fleet of hardware with ceph backed storage is a one-liner.

AdieuToLogic

> Adding an app for me to be very available across a fleet of hardware with ceph backed storage is a one-liner.

But irssi is a chat client:

  About
  
  Irssi is a modular text mode chat client. It comes with IRC 
  support built in.[0]
0 - https://irssi.org/

system7rocks

Is it possible to run multiple instances of this, so I could join an irc server that I also spin up in another docker instance and then have a rousing conversation with myself???

fennec-posix

Absolutely!

orliesaurus

I use thelounge, it's pretty amazing except it hogs up a lot of disk space with the logs. I ve also been really sad that you can't update it without restarting the process which means I lose everything I am connected to (which on IRc sometimes isnt ideal)

alpb

I remember using this to collaborate with docker maintainers about 10 years ago now. Good old days.

spike021

I remember interviewing for an internship at about that time and they told me to help answer questions on their IRC.

j_m_b

Better would be a docker container for an IRC server. Something using a modern approach where you could have link attachments, replies for message threads etc. An IRC slack alternative.

null

[deleted]

nickzelei

Is there no dockerized irc server that exists or are you thinking about something else here?