Docker Container for Slack and IRC Integration
git clone git@github.com:att-comdev/dockerfiles.git
cd slackbridge/
docker build -t slackbridge .
Modify env.cfg to input the various parameters of your Slack and IRC channels, like so:
# env.cfg
IRC_SERVER=irc.server.net
SLACK_TOKEN=MySlackToken
BOT_NICKNAME=ChatBotNick
SLACK_CHANNEL=SlackChannel
IRC_CHANNEL=IRCChannel
#Run without persistent storage:
sudo docker run --name slackbridge --env-file ./env.cfg -d slackbridge
You can re-configure the settings without having to build the container
-
Change the parameters in env.cfg
-
Modify the config/config.json as needed
Launch container by running docker run command above