Sign inSign up

qubered/manager.io-server

By qubered

•Updated almost 2 years ago

Self-hosted Manager.io Server in a Docker container.

Image
Web servers
0

237

qubered/manager.io-server repository overview

⁠Manager.io Server Docker Image

A Docker image for the Manager.io Server Edition⁠, built from the latest release.

⁠Run Instructions

To run the container:

docker run -d \
  --name manager-server \
  -p 8080:8080 \
  -v /path/to/data:/data \
  qubered/manager.io-server:latest
  • Replace /path/to/data with the directory on your host system where you want to store Manager.io data.
  • Access the Manager.io interface at http://localhost:8080.

⁠Docker Compose

Use this docker-compose.yml file:

version: "3.8"
services:
  manager-server:
    image: qubered/manager.io-server:latest
    container_name: manager-server
    ports:
      - "8080:8080"
    volumes:
      - ./data:/data
    restart: unless-stopped

Run the container with:

docker-compose up -d

⁠Updating the Image

To update to the latest version:

  1. Pull the latest image:
    docker pull qubered/manager.io-server:latest
    
  2. Stop and remove the current container:
    docker stop manager-server
    docker rm manager-server
    
  3. Restart the updated container using the run or compose instructions above.

Tag summary

Content type

Image

Digest

sha256:67685a307…

Size

173.3 MB

Last updated

almost 2 years ago

docker pull qubered/manager.io-server