If you chose to run shout as public with no user login,
all you need to do is build the image and start it...
If you chose to run shout in private mode, follow these steps...
mkdir -p ./users/<username>
nano ./users/<username>/user.json
copy the content of users/example/user.json
into the new user.json
file.
edit the content to your likings.
{
"user": "example",
"password": "password",
"networks": [{
"name": "Freenode",
"host": "irc.freenode.net",
"port": 6697,
"tls": true,
"password": "serverpw",
"nick": "john",
"realname": "John Doe",
"commands": [
"/msg NickServ identify password",
"/msg ChanServ op #chan"
],
"join": "#foo, #bar"
}]
}
And you are done, build the docker image and run it!