From e053b9ff7b12e97222adb08a4e84c397137aa64f Mon Sep 17 00:00:00 2001 From: Tony Murray Date: Sat, 22 Oct 2022 15:45:11 -0500 Subject: [PATCH] Docker quick install (#14475) * Docker quick install * Update Docker.md * Update Docker.md --- doc/Installation/Docker.md | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/doc/Installation/Docker.md b/doc/Installation/Docker.md index 28e8ab6079..c23cb0196a 100644 --- a/doc/Installation/Docker.md +++ b/doc/Installation/Docker.md @@ -2,4 +2,24 @@ An official LibreNMS docker image based on Alpine Linux and Nginx is available on [DockerHub](https://hub.docker.com/r/librenms/librenms/). -Documentation can be found on the [GitHub repository](https://github.com/librenms/docker). + +# Documentation + +Full install and configuration documentation can be found on the [GitHub repository](https://github.com/librenms/docker). + +# Quick install +1. Install docker: https://docs.docker.com/engine/install/ +2. Download and unzip composer files: +``` +mkdir librenms +cd librenms +wget https://github.com/librenms/docker/archive/refs/heads/master.zip +unzip master.zip +cd examples/compose +``` +3. Set a new mysql password in .env and inspect docker-composer.yml +4. Bring up the docker containers +``` +docker-compose up -d +``` +5. Open webui to finish configuration. `http://localhost` (use the correct ip or name instead of localhost)