Run iTop in a Docker container based on the php:apache image.
Run the latest version (see tags for other iTop versions) container named my-itop:
docker run -d -p 80:80 --name=my-itop supervisions/itop:latestThen go to http://localhost/setup to continue the installation. The setup can be preloaded with database credentials by linking to a MySQL/MariaDB container or by providing environment variables. Note that you will need to select Install a new iTop on the second page.
This methods works with both MySQL or MariaDB containers. For example, create this MariaDB instance named my-itop-db:
docker run -d --name=my-itop-db -e MYSQL_DATABASE=itop -e MYSQL_USER=itop -e MYSQL_PASSWORD=itop -e MYSQL_RANDOM_ROOT_PASSWORD=yes mariadbThe link needs to be called db in order to gain profit of it:
docker run -d -p 80:80 --link=my-itop-db:db --name=my-itop supervisions/itop:latestIn order to operate properly, iTop maintenance operations and asynchronous tasks must be executed on a regular basis. In order to ease the installation, all the background tasks have been grouped to be launched from a single file. The command to run this from your sheduler looks like this:
docker exec my-itop php webservices/cron.php --auth_user=<login> --auth_pwd=<password>If you don't want these credentials to be present in your sheduler, you can create a file /etc/itop/cron.params based on the file webservices/cron.distrb which can be used as a template.
The command to run from your sheduler then becomes this:
docker exec my-itop php webservices/cron.php --param_file=/etc/itop/cron.params2.7.13,2.7(Changelog)3.2.2,3.2,latest(Changelog)3.2.1(Changelog)3.1.3,3.1(Changelog)2.7.12(Changelog)3.1.2(Changelog)2.7.11(Changelog)3.2.0(Changelog)3.0.4,3.0(Changelog)2.7.10(Changelog)3.1.1(Changelog)2.7.9(Changelog)3.1.0(Changelog)3.0.3(Changelog)2.7.8(Changelog)3.0.2(Changelog)2.7.7(Changelog)3.0.1(Changelog)3.0.0(Changelog)2.7.6(Changelog)2.7.5(Changelog)2.7.4(Changelog)2.7.3(Changelog)2.7.2(Changelog)2.7.1(Readme) (Changelog)2.7.0(Readme) (Changelog)2.6.3,2.6(Changelog)2.6.1(Changelog)2.6.0(Changelog)2.5.1,2.5(Readme) (Changelog)2.5.0(Readme) (Changelog)2.4.3,2.4(Readme) (Changelog)2.4.1(Readme) (Changelog)2.4.0(Readme) (Changelog)2.3.4,2.3(Readme)2.3.3(Readme)