2022-02-09 00:02:28 +01:00
|
|
|
# Docker
|
|
|
|
|
|
|
|
An official LibreNMS docker image based on Alpine Linux and Nginx is available
|
|
|
|
on [DockerHub](https://hub.docker.com/r/librenms/librenms/).
|
2022-10-22 15:45:11 -05:00
|
|
|
|
|
|
|
# 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
|
2022-12-09 15:09:23 +01:00
|
|
|
cd docker-master/examples/compose
|
2022-10-22 15:45:11 -05:00
|
|
|
```
|
|
|
|
3. Set a new mysql password in .env and inspect docker-composer.yml
|
|
|
|
4. Bring up the docker containers
|
|
|
|
```
|
2023-02-21 00:42:42 +01:00
|
|
|
docker compose up -d
|
2022-10-22 15:45:11 -05:00
|
|
|
```
|
|
|
|
5. Open webui to finish configuration. `http://localhost` (use the correct ip or name instead of localhost)
|