DiouxX / docker-glpi

Project to deploy GLPI with docker
222 stars 185 forks source link

I can't unzip files on container #57

Closed jhonatas-mendes closed 2 years ago

jhonatas-mendes commented 2 years ago

Hi guys, I can't unzip the file "fusioninventory-9.5+3.0.tar.bz2" in the directory /var/www/html/glpi/plugins/ with the tar command nor with the zip command, what can we do to overcome this problem? Grateful

image

DiouxX commented 2 years ago

Hello, this is normal because the bzip2 package is not installed.

You can install the package directly in the container :

apt update && apt install -y bzip2

Or you define a volume to map the glpi's folder or just the plugins folder between your host and the container. Then you extract the archive from the host system