diff --git a/eggdrop/README-short.txt b/eggdrop/README-short.txt new file mode 100644 index 000000000000..9ab12aab4bb0 --- /dev/null +++ b/eggdrop/README-short.txt @@ -0,0 +1 @@ +The official Docker image of Eggdrop- IRC's oldest actively-developed bot! diff --git a/eggdrop/content.md b/eggdrop/content.md new file mode 100644 index 000000000000..48d1310a8c0e --- /dev/null +++ b/eggdrop/content.md @@ -0,0 +1,39 @@ +# 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. + +%%LOGO%% + +# 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:latest + +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. + +## 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:latest + +Please note that, even in daemon mode, the -i flag for docker run is required. + +## 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 diff --git a/eggdrop/github-repo b/eggdrop/github-repo new file mode 100644 index 000000000000..1915e5dc0243 --- /dev/null +++ b/eggdrop/github-repo @@ -0,0 +1 @@ +https://github.com/eggheads/eggdrop-docker diff --git a/eggdrop/license.md b/eggdrop/license.md new file mode 100644 index 000000000000..63bea3fd15c0 --- /dev/null +++ b/eggdrop/license.md @@ -0,0 +1 @@ +View [license information](https://www.gnu.org/licenses/gpl-3.0.en.html) for the software contained in this image. diff --git a/eggdrop/logo.png b/eggdrop/logo.png new file mode 100644 index 000000000000..4438fd47a172 Binary files /dev/null and b/eggdrop/logo.png differ