This repository contains Dockerfile of OpenNMS for Docker's automated build published to the public Docker Registry.
# ./build.sh
- Start first the dockerized Postgres container
# docker run --name opennms-database -e POSTGRES_PASSWORD=mysecretpassword -d postgres
- 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