How to integrate ClamAV into PureFTPd

Installing ClamAV

ClamAV is not available in the official CentOS repositories, therefore, we enable the EPEL repository (if you haven’t done so already. Start by importing the RPM GPK keys.

rpm –import /etc/pki/rpm-gpg/RPM-GPG-KEY*

Then we enable the EPEL repository on our CentOS system as lots of the packages that we are going to install in the course of this tutorial are not available in the official CentOS 7 repository:

Read More

Publishing your Custom Docker Image on Docker Hub

Once you have create am image your next option is to publish the created Docker image on the Docker Hub Repository. To do so, you will need to create an account on the Docker Hub signup webpage where you will provide a name, password, and email address for your account. I should also point out that the Docker Hub service is free for public docker images. Once you have created your account, you can push the image that you have previously created, to make it available for others to use.

Read More

Introduction to Docker Files

Let us introduce ourselves to the Docker Hub and learned that it is a cloud-based centralized resource for container image discovery, image building, and distribution of those images. We also learned that a docker image is a multi-layer image on top of a base image. That said, using a base image removes the hassle of creating from scratch a suitable OS for docker image and gives us the option to customize the upper layers where our software will reside.

Read More