Install With Docker (Locally Managed)
Last updated
Last updated
Linux machine with:
Docker installed (or similar, compatible container runtime)
Root permissions
The following prerequisites are optional and only relevant if you want to connect your open-appsec agent directly to a WebUI (SaaS) management tenant:
Access to a SaaS tenant on my.openappsec.io (WebUI for SaaS management) Follow the instructions available here:
Agent profile created for open-appsec Docker deployment in SaaS tenant Follow the instructions available here, make sure to choose the "Declarative configuration" management mode. Once done, don't forget to copy the profile token after policy installation as this is needed in the installation steps further below:
Follow these steps to deploy open-appsec and NGINX reverse proxy (including open-appsec attachment) with separate containers (e.g. on Docker) or implement this using your deployment CI pipeline: (This is the standard deployment, an alternative option to deploy with a single, unified container is available as well, see "NGINX - Unified" tab.)
Step 1: Pull the open-appsec agent image or add/use it as part of the deployment CI’s container management system:
Step 2: Create a valid local_policy.yaml
file which contains the desired declarative configuration for the agent container and put it in a local directory of your choice to be used in the docker run command for the agent as <path-to-persistent-location-for-local-configuration-file>
(see also Step 4 for the docker run command).
You can also download and use the example default local_policy.yaml
from the open-appsec GitHub repository.
Full details regarding the declarative local policy file structure are available here:
Step 3: Create the following empty directories to be used later for volume mounts in the docker run command for the agent.
Creation of the folders above and the volume mounts shown in the next step with -v
is optional but strongly recommended for having persistence of the important agent information (data, config, logs).
Mounting a folder <path-to-local-configuration-file>
, which must contain a valid local configuration file for the open-appsec agent, to /ext/appsec
directory inside the agent container on the other hand is mandatory for standalone deployments.
Step 4: Run the open-appsec agent container with this command:
AGENT_TOKEN <TOKEN>
(environment variable, optional), replace with the token you copied from the profile in the WebUI before (see Prerequisites section above).
https_proxy
(environment variable) : allows you to configure an HTTP(S) proxy server to be used by the agent. It is optional and can be removed if not needed.
autoPolicyLoad
(environment variable): when set to true
, allows you to set the open-appsec agent to automatically apply any new changes in the local_policy.yaml file without having to restart the agent container or applying the changes with open-appsec-ctl -ap
(note that this can take up to 30 seconds). This is useful, especially in DevOps/continuous deployment scenarios.
user_email
(environment variable): allows you to provide your email address.
no-upgrade
(optional) flag to the cp-nano-agent
command will start the agent without an initial upgrade.
The optional user_email
environment variable allows you to associate your email address with your specific deployment by replacing <your-email-address>
with your own email address.
This allows the open-appsec team to provide you easy assistance in case of any issues you might have with your specific deployment in the future and also to provide you information proactively regarding open-appsec in general or regarding your specific deployment. This is an optional parameter and can be removed. If we send automatic emails there will also be an opt-out option included for receiving similar communication in the future.
Step 5: Create (or replace) the NGINX container by first pulling the open-appsec NGINX container, which already contains the open-appsec attachment. Alternatively, add/use it as part of the deployment CI’s container management system:
Step 6: Run the open-appsec NGINX container, make sure to add the --ipc=host
parameter, here’s an example command:
For general NGINX configuration please check the relevant NGINX documentation.
Step 7: Make sure both containers are running, use docker ps
to verify.
If you've connected to SaaS Management Tenant in Step 4:
Step 8: Navigate to the Agents tab in the WebUI and ensure the new Agent is successfully connected.
Now your open-appsec installation on Docker is completed and your configured web app or API assets are protected!