Skip to content

Latest commit

 

History

History
50 lines (37 loc) · 1.53 KB

README.md

File metadata and controls

50 lines (37 loc) · 1.53 KB

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"]