eggdrop
Estimated reading time: 5 minutesThe official Docker image of Eggdrop- IRC’s oldest actively-developed bot!
GitHub repo: https://github.com/eggheads/eggdrop-docker
Library reference
This content is imported from the official Docker Library docs, and is provided by the original uploader. You can view the Docker Store page for this image at https://store.docker.com/images/eggdrop
Supported tags and respective Dockerfile
links
develop
(develop/Dockerfile)1.8
,1.8.2
,stable
,latest
(1.8/Dockerfile)1.6
,1.6.21
(1.6/Dockerfile)
Quick reference
-
Where to get help:
the Docker Community Forums, the Docker Community Slack, or Stack Overflow -
Where to file issues:
https://github.com/eggheads/eggdrop-docker/issues -
Maintained by:
Eggheads (the Eggdrop community) -
Published image artifact details:
repo-info repo’srepos/eggdrop/
directory (history)
(image metadata, transfer size, etc) -
Image updates:
official-images PRs with labellibrary/eggdrop
official-images repo’slibrary/eggdrop
file (history) -
Source of this description:
docs repo’seggdrop/
directory (history) -
Supported Docker versions:
the latest release (down to 1.6 on a best-effort basis)
What is Eggdrop?
Eggdrop is the world’s most popular Open Source IRC bot, designed for flexibility and ease of use, and is freely distributable under the GNU General Public License (GPL). It is designed to Linux, BSD, SunOs, Windows, and Mac OS X, among others. The core codebase is extendable via TCL scripts or C modules and bots can be linked to form botnets, enabling the sharing of userfiles and partylines across multiple bots.
How to use this image
First Run
To run this container the first time, you’ll need to pass in, at minimum, a nickname and server via Environmental Variables. At minimum, a docker run command similar to
$ docker run -ti -e NICK=FooBot -e SERVER=irc.freenode.net -v /path/for/host/data:/home/eggdrop/eggdrop/data eggdrop
should be used. This will modify the appropriate values within the config file, then start your bot with the nickname FooBot and connect it to irc.freenode.net. These variables are only needed for your first run- after the first use, you can edit the config file directly. Additional configuration options are listed in the following sections.
Please note that, even in daemon mode, the -i
flag for docker run
is required.
Environmental Variables
SERVER
This variable sets the IRC server Eggdrop will connect to. Examples are:
-e SERVER=just.a.normal.server
-e SERVER=you.need.to.change.this:6667
-e SERVER=another.example.com:7000:password
-e SERVER=[2001:db8:618:5c0:263::]:6669:password
-e SERVER=ssl.example.net:+6697
Only one server can be specified via an environmental variable. The + denotes an SSL-enabled port. After the first run, it is advised to edit the eggdrop config directly to add additional servers (see Long-term Persistence below).
NICK
This variable sets the nickname used by eggdrop. After the first use, you should change it by editing the eggdrop config directly (see Long-term Persistence below).
Long-term Persistence
After running the eggdrop container for the first time, the configuration file, user file and channel file will all be available inside the container at /home/eggdrop/eggdrop/data/ . NOTE! These files are only as persistent as the container they exist in. If you expect to use a different container over the course of using the Eggdrop docker image (intentionally or not) you will want to create a persistent data store. The easiest way to do this is to mount a directory on your host machine to /home/eggdrop/eggdrop/data. If you do this prior to your first run, you can easily edit the eggdrop configuration file on the host. Otherwise, you can also drop in existing config, user, or channel files into the mounted directory for use in the eggdrop container. You’ll also likely want to daemonize eggdrop (ie, run it in the background). To do this, start your container with something similar to
$ docker run -i -e NICK=FooBot -e SERVER=irc.freenode.net -v /path/to/eggdrop/files:/home/eggdrop/eggdrop/data -d eggdrop
If you provide your own config file, specify it as the argument to the docker container:
$ docker run -i -v /path/to/eggdrop/files:/home/eggdrop/eggdrop/data -d eggdrop mybot.conf
Any config file used with docker MUST end in .conf, such as eggdrop.conf or mybot.conf
Adding scripts
An easy way to add scripts would be to create a scripts directory on the host and mount it to /home/eggdrop/eggdrop/scripts
(or the path of your choosing). This would be accomplished by adding an option similar to
-v /path/to/host/scripts:/home/eggdrop/eggdrop/scripts
to your docker run command line (and then edit your config file to load the scripts from the path that matches where you mounted the scripts dir).
Exposing network ports
If you want to expose network connections for your bot, you’ll also want to use the -p flag to expose whichever port you specified in the config as the listen port (default is 3333). For example, to expose port 3333, add
-p 3333:3333
to your docker run command line.
Troubleshooting / Support
For additional help, you can join the #eggdrop channel on Freenode
The git repository for the Dockerfile is maintained at https://github.com/eggheads/eggdrop-docker
License
View license information for the software contained in this image.
As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained).
Some additional license information which was able to be auto-detected might be found in the repo-info
repository’s eggdrop/
directory.
As for any pre-built image usage, it is the image user’s responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within.
library, sample, eggdrop