Sign inSign up

acrelle/rpi-eggdrop

By acrelle

Updated almost 8 years ago

Raspberry pi build of eggdrop based on arm32v6/alpine:latest

Image
0

10K+

acrelle/rpi-eggdrop repository overview

rpi-eggdrop

Uses a raspberry pi compatible base image, forked from https://hub.docker.com/r/library/eggdrop/

Source

https://github.com/acrelle/rpi-eggdrop-docker

Build

Build Status

https://hub.docker.com/r/acrelle/rpi-eggdrop/

Usage

Follow above linked instructions to run.

Change 3333 to the port that incoming telnet is exposed on (if enabled).

docker run -dt  -v eggdrop_data:/home/eggdrop/eggdrop/data \
-p 3333:3333 acrelle/rpi-eggdrop:latest eggdrop.conf
Docker Compose

The below example is specific to my configuration:

version: "2"
services:
  eggdrop:
    build: .
    image: acrelle/rpi-eggdrop
    container_name: eggdrop
    restart: always
    volumes:
     - ~/appdata/eggdrop/eggdrop_data:/home/eggdrop/eggdrop/data
     - ~/appdata/eggdrop/eggdrop_scripts:/home/eggdrop/eggdrop/scripts
     - ~/appdata/eggdrop/eggdrop_data/mel:/home/eggdrop/eggdrop/mel
     - ~/appdata/eggdrop/eggdrop_data/save:/home/eggdrop/eggdrop/save
    environment:
     - PUID=1001
     - PGID=100
    ports:
     - 3333:3333
    tty: true
    command: ["^W^.conf"]

Tag summary

Content type

Image

Digest

Size

8.6 MB

Last updated

almost 8 years ago

docker pull acrelle/rpi-eggdrop