For this installation, we need the following prerequisites:
Now, let's start the installation procedures:
mkdir docker -p && mkdir docker/it-tools -p && cd docker/it-tools
Docker run command if you prefer to go forward and used it:
docker run -d -v /root/it-tools/it-tools-data:/data --name it-tools -p 8586:80 corentinth/it-tools:latest
Or if you prefer to docker-compose pls use the below command and create the desired YML file
nano docker-compose.yml
Or you can use the Portainer stack section as well.
Now you can paste the below script via the NANO editor if you want to use the Linux CLI, save and exit
version: '3.9'
services:
it-tools:
image: 'corentinth/it-tools:latest'
ports:
- '8080:80'
container_name: it-tools
volumes:
- '/home/user/it-tools-data:/data'
Now you can start the container by below command or if you are using the Portainer please hit on that deploy button:
docker-compose up -d
Finally, if you want to know how you can work with it, you can watch my video related to this subject.
Have fun…