Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 714 Bytes

README.md

File metadata and controls

19 lines (16 loc) · 714 Bytes

Dockerized OpenNMS 17

This repository contains Dockerfile of OpenNMS for Docker's automated build published to the public Docker Registry.

Build

# ./build.sh

Run

  1. Start first the dockerized Postgres container
# docker run --name opennms-database -e POSTGRES_PASSWORD=mysecretpassword -d postgres
  1. Pull the OpenNMS image and run the container linked to the postgres database
# docker pull stakly/opennms
# docker run --link=opennms-database:db -e DB_POSTGRES_PASSWORD=mysecretpassword --privileged --name opennms -d stakly/opennms