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.
Run a MySQL database, dedicated to phpipam. If you have an existing MariaDB or MySQL running, skip to the next section and adjust the MYSQL environment variables appropriately.
$ docker run --name phpipam-mysql -e MYSQL_ROOT_PASSWORD=my-secret-pw -v /my_dir/phpipam:/var/lib/mysql -d mysql:5.6
Start your phpIPAM container with a couple of options:
docker run -d --name phpipam --restart=always --log-opt max-size=100m -p 10.1.1.10:8080:80 -e MYSQL_HOST=127.0.0.1 -e MYSQL_USER=root -e MYSQL_PASSWORD=my_password tighek/phpipam:1.3.1
You could also link to a database container using the --link phpipam-mysql:mysql option if you created a database on this host.
To upgrade the release version, just change the PHPIPAM_VERSION environment variable to the target release.
Content type
Image
Digest
Size
179.6 MB
Last updated
over 8 years ago
docker pull tighek/phpipam