phpIPAM is an open-source web IP address management application. Its goal is to provide light and simple IP address management application.
phpIPAM is developed and maintained by Miha Petkovsek, released under the GPL v3 license, project source is here
Learn more on phpIPAM homepage

Run a MySQL database, dedicated to phpipam
$ docker run --name phpipam-mysql -e MYSQL_ROOT_PASSWORD=my-secret-pw -v /my_dir/phpipam:/var/lib/mysql -d mysql:5.6
Here, we store data on the host system under /my_dir/phpipam and use a specific root password.
$ docker run -ti -d -p 80:80 --name ipam --link phpipam-mysql:mysql michaelholttech/phpipam
We are linking the two containers and expose the HTTP port.
Regarding your requirements and docker setup, you've to expose resources.
For HTTPS, run a reverse-proxy in front of your phpipam container and link it to.
For multi-host containers, expose ports, run etcd or consul to make service discovery works etc.
http://<ip>[:<specific_port>]/



You can create an all-in-one YAML deployment descriptor with Docker compose, like this :
ipam:
image: michaelholttech/phpipam
ports:
- "80:80"
links:
- phpipam-mysql
phpipam-mysql:
image: mysql:5.6
environment:
- MYSQL_ROOT_PASSWORD=my-secret-pw
volumes:
- /my_dir/phpipam:/var/lib/mysql
And next :
$ docker-compose up -d
phpIPAM is under heavy development by the amazing Miha.
To upgrade the release version, just change the PHPIPAM_VERSION environment variable to the target release (see here)
Content type
Image
Digest
Size
187.6 MB
Last updated
over 10 years ago
docker pull michaelholttech/phpipam