Skip to content

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

Notifications You must be signed in to change notification settings

acrelle/rpi-eggdrop-docker

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 

Repository files navigation

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: unless-stopped
    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"]

About

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

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 62.7%
  • Dockerfile 19.3%
  • Tcl 18.0%