docker: container image (Dockerfile + .dockerignore + minimal default config)
This commit is contained in:
parent
0be6daa1c2
commit
281d3a962c
3 changed files with 65 additions and 0 deletions
14
docker/default.conf
Normal file
14
docker/default.conf
Normal 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"; }
|
||||
Loading…
Add table
Add a link
Reference in a new issue