docker: container image (Dockerfile + .dockerignore + minimal default config)

This commit is contained in:
Jean Chevronnet 2026-08-30 21:17:34 +00:00
parent 0be6daa1c2
commit 281d3a962c
No known key found for this signature in database
GPG key ID: 439666D63A9477E4
3 changed files with 65 additions and 0 deletions

14
docker/default.conf Normal file
View file

@ -0,0 +1,14 @@
# Minimal default configuration baked into the container image so it runs out of
# the box on plaintext port 6667. For a real deployment provide your own config
# (TLS, opers, links, cloak secret) by mounting over /etc/echoircd/echoircd.conf
# or passing a path as the command.
server {
name "echoircd.local";
network "echoIRCd";
sid "0AA";
description "echoIRCd (container)";
}
listen { ip "[::]"; port 6667; } # plaintext clients
cloak { key "please-change-this-cloak-key-to-a-long-random-secret"; }