Sign inSign up

nefald/autoplug

By nefald

Updated over 1 year ago

AutoPlug is a server manager that automates the most parts of your servers/networks maintenance.

Image
0

1.2K

nefald/autoplug repository overview

AutoPlug - Unofficial Docker image

AutoPlug is a feature-rich, modularized server manager, that automates the most tedious parts of your servers/networks maintenance. It is able to auto-update your plugins, server, java installation, and even itself. It has a built-in server restart scheduler, backup creator, crash detector/auto-restart, directory/log cleaner, auto-EULA creation, and even synchronized/shared folders.

Nefald community offer you an Docker version for AutoPlug. You can find support and updated documentation on our Gitlab, also you can discuss and join us on our Discord.

RCON

Our docker image integrated the RCON CLI by Itzg, based on james4k's RCON library for golang. With it, you will be able to manage your Minecraft server using a RCON client/console, for example MCrcon by Tiifii.

AutoPlug setup

Always refer you to AutoPlug documentation.

Installation

Using docker-compose:

version: '3.7'

services: 
  AutoPlug:
    image: nefald/autoplug:latest
    container_name: AutoPlug
    restart: unless-stopped
    stdin_open: true # docker run -i
    tty: true # docker run -t

    ports:
      #Bluemap
      - 8100:8100/tcp
      - 8100:8100/udp 

      #Minecraft
      - 25565:25565/tcp
      - 25565:25565/udp

      #RCON
      - 25575:25575/tcp
      - 25575:25575/udp

    volumes:
      - './:/data:rw'
      
    environment:
      - TZ=Europe/Paris

First launch

At first launch, use docker-compose run <container> instead of docker-compose up, to gain access to interactive shell, and configure AutoPlug.

LICENSE

This image is released under MIT LICENSE.

Tag summary

Content type

Image

Digest

sha256:8eaf81a2a

Size

288.5 MB

Last updated

over 1 year ago

docker pull nefald/autoplug