Sign inSign up

smontardlbint/glpi-agent-proxy

By smontardlbint

Updated over 1 year ago

GLPI Agent container using the Proxy server Plugin

Image
0

159

smontardlbint/glpi-agent-proxy repository overview

Based on the GLPI Proxy Server Plugin : https://glpi-agent.readthedocs.io/en/latest/plugins/proxy-server-plugin.html

This container will forward inventory request to you GLPI server. It listen to the port 62354/TCP on the following url : http://**your.host**:62354/proxy/glpi
It is fully stateless, therefore it does not require any volume mapping.

The configuration is done through environment variables :

GLPI_HTTPS : (Optional)

Set to 1 for using https to connect to your server instead of http

GLPI_PORT : (Optional)

Set the custom port to use to contact your GLPI Server, default to 80 for HTTP or 443 for HTTPS

GLPI_HOST :

IP or FQDN for your GLPI instance

GLPI_MAX_RATE (Optional)

GLPI_MAX_RATE_PERIOD (Optional)

Used to configure Rate limitation, see : https://glpi-agent.readthedocs.io/en/latest/plugins/proxy-server-plugin.html#configuration

Docker exemple :

docker run -d -p 62365:62354 -e --env GLPI_HTTPS=1 --env GLPI_HOST=my_hostname.fr smontardlbint/glpi-agent-proxy:1.7

Docker Compose exemple :

version: '3.9'
    proxy:
        image: smontardlbint/glpi-agent-proxy:1.7
        restart: always
        ports:
            - "62354:62354"
        environment:
            GLPI_HTTPS: 1
            GLPI_HOST: my_hostname.fr
            GLPI_PORT: 8443

Tag summary

Content type

Image

Digest

sha256:217daee6b

Size

118.5 MB

Last updated

over 1 year ago

docker pull smontardlbint/glpi-agent-proxy:1.7