Docker compoase YAML file

Hello,

I would like to install Z APP Connector on docker.
I followed to guide (App Connector Deployment Guide for Docker | Zscaler) and start the docker with docker run command. It works fine…
One of our system engineer prefer to use a docker compose file…
Any sample docker-compose.yml file available ??

Regards,

HA

Hello Hedi,

creating a yaml is a quite straight forward process, but https://www.composerize.com/ should help to get started. Otherwise maybe you can use this as a starter:

version: '3.3'
services:
    zpa-connector:
	    image: 'zscaler/zpa-connector:latest.amd64'
        restart: always
        environment:
            - ZPA_PROVISION_KEY=3|api.private.zscaler.com|key
	cap_add:
		- NET_ADMIN
		- NET_BIND_SERVICES
		- NET_RAW
		- SYS_NICE
		- SYS_TIME

BR
Manuel

EDIT: Forgot to mention although it should be a no-brainer: do never ever paste any internal data into any public available webservice :wink:

Hi,

Many thanks for your help !
It works fine !!

Regards,

HA