├── .env ├── .github └── workflows │ ├── docker-build.yaml │ └── update-version.yaml ├── .gitignore ├── Dockerfile ├── README.md ├── docker-compose.yaml ├── publish.py ├── root └── etc │ ├── cont-init.d │ ├── 100-es-config.sh │ └── 105-es-certificate-gen.sh │ ├── mariadbconfigure.d │ └── 20-es-config.sh │ ├── nginx │ └── conf.d │ │ └── ssl.conf │ └── services.d │ └── zmeventnotification │ ├── finish │ ├── log │ └── run │ ├── notification-fd │ └── run ├── test ├── README.Md └── docker-compose.yaml └── testsautomated ├── docker-compose.yaml └── zm └── config └── ssl └── dhparam.pem /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoneminder-containers/eventserver-base/HEAD/.env -------------------------------------------------------------------------------- /.github/workflows/docker-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoneminder-containers/eventserver-base/HEAD/.github/workflows/docker-build.yaml -------------------------------------------------------------------------------- /.github/workflows/update-version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoneminder-containers/eventserver-base/HEAD/.github/workflows/update-version.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | test/zm -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoneminder-containers/eventserver-base/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoneminder-containers/eventserver-base/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoneminder-containers/eventserver-base/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /publish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoneminder-containers/eventserver-base/HEAD/publish.py -------------------------------------------------------------------------------- /root/etc/cont-init.d/100-es-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoneminder-containers/eventserver-base/HEAD/root/etc/cont-init.d/100-es-config.sh -------------------------------------------------------------------------------- /root/etc/cont-init.d/105-es-certificate-gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoneminder-containers/eventserver-base/HEAD/root/etc/cont-init.d/105-es-certificate-gen.sh -------------------------------------------------------------------------------- /root/etc/mariadbconfigure.d/20-es-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoneminder-containers/eventserver-base/HEAD/root/etc/mariadbconfigure.d/20-es-config.sh -------------------------------------------------------------------------------- /root/etc/nginx/conf.d/ssl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoneminder-containers/eventserver-base/HEAD/root/etc/nginx/conf.d/ssl.conf -------------------------------------------------------------------------------- /root/etc/services.d/zmeventnotification/finish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoneminder-containers/eventserver-base/HEAD/root/etc/services.d/zmeventnotification/finish -------------------------------------------------------------------------------- /root/etc/services.d/zmeventnotification/log/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoneminder-containers/eventserver-base/HEAD/root/etc/services.d/zmeventnotification/log/run -------------------------------------------------------------------------------- /root/etc/services.d/zmeventnotification/notification-fd: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /root/etc/services.d/zmeventnotification/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoneminder-containers/eventserver-base/HEAD/root/etc/services.d/zmeventnotification/run -------------------------------------------------------------------------------- /test/README.Md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoneminder-containers/eventserver-base/HEAD/test/README.Md -------------------------------------------------------------------------------- /test/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoneminder-containers/eventserver-base/HEAD/test/docker-compose.yaml -------------------------------------------------------------------------------- /testsautomated/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoneminder-containers/eventserver-base/HEAD/testsautomated/docker-compose.yaml -------------------------------------------------------------------------------- /testsautomated/zm/config/ssl/dhparam.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoneminder-containers/eventserver-base/HEAD/testsautomated/zm/config/ssl/dhparam.pem --------------------------------------------------------------------------------