Skip to content
This repository was archived by the owner on Sep 11, 2025. It is now read-only.

Ebnater/jmusicbot-docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

67 Commits
 
 
 
 
 
 

Repository files navigation

JMusicBot Docker Implementation

This guide will help you set up JMusicBot using Docker. Follow the instructions below to get started.

Prerequisites

  • Docker installed on your system
  • Docker Compose installed on your system

Getting Started

  1. Create a directory for JMusicBot:

    mkdir -p path/to/Jmusicbot
    cd path/to/Jmusicbot
  2. Create a docker-compose.yml file with the following content:

    version: '3.8'
    
    services:
      jmusicbot:
        image: git.serv.eserver.icu/ewbc/jmusicbot-docker:latest
        container_name: jmusicbot
        volumes:
          - ./config.txt:/opt/jmusicbot/config.txt
        restart: unless-stopped
  3. Create a config.txt file in the same directory with your JMusicBot configuration. You can find the config.txt here JmusicBot Example Configuration

  4. Start the JMusicBot container:

    docker-compose up -d
  5. Verify that the container is running:

    docker ps

Stopping the Container

To stop the JMusicBot container, run:

docker-compose down

Additional Information

  • The config.txt file should contain your JMusicBot configuration.
  • The container will automatically restart unless stopped manually.

For more information, visit the JMusicBot GitHub repository.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published