Self-hosted Manager.io Server in a Docker container.
237
A Docker image for the Manager.io Server Edition, built from the latest release.
To run the container:
docker run -d \
--name manager-server \
-p 8080:8080 \
-v /path/to/data:/data \
qubered/manager.io-server:latest
/path/to/data with the directory on your host system where you want to store Manager.io data.http://localhost:8080.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
To update to the latest version:
docker pull qubered/manager.io-server:latest
docker stop manager-server
docker rm manager-server
Content type
Image
Digest
sha256:67685a307…
Size
173.3 MB
Last updated
almost 2 years ago
docker pull qubered/manager.io-server