forked from zoneminder-containers/eventserver-base
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dockerfile
106 lines (92 loc) · 4.31 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
# syntax=docker/dockerfile:experimental
ARG ZM_VERSION=main
ARG ES_VERSION=master
#####################################################################
# #
# Download ES #
# #
#####################################################################
FROM alpine:latest AS eventserverdownloader
ARG ES_VERSION
WORKDIR /eventserverdownloader
RUN set -x \
&& apk add git \
&& git clone https://github.com/ZoneMinder/zmeventnotification.git . \
&& git checkout ${ES_VERSION}
#####################################################################
# #
# Convert rootfs to LF using dos2unix #
# Alleviates issues when git uses CRLF on Windows #
# #
#####################################################################
FROM alpine:latest as rootfs-converter
WORKDIR /rootfs
RUN set -x \
&& apk add --repository=http://dl-cdn.alpinelinux.org/alpine/edge/community/ \
dos2unix
COPY root .
RUN set -x \
&& find . -type f -print0 | xargs -0 -n 1 -P 4 dos2unix \
&& chmod -R +x *
#####################################################################
# #
# Install ES #
# Apply changes to default ES config #
# #
#####################################################################
FROM ghcr.io/zoneminder-containers/zoneminder-base:${ZM_VERSION}
ARG ES_VERSION
RUN set -x \
&& apt-get update \
&& apt-get install -y \
build-essential \
libjson-perl \
&& PERL_MM_USE_DEFAULT=1 \
&& yes | perl -MCPAN -e "install Net::WebSocket::Server" \
&& yes | perl -MCPAN -e "install LWP::Protocol::https" \
&& yes | perl -MCPAN -e "install Config::IniFiles" \
&& yes | perl -MCPAN -e "install Time::Piece" \
&& yes | perl -MCPAN -e "install Net::MQTT::Simple" \
&& apt-get remove --purge -y \
build-essential \
&& rm -rf /var/lib/apt/lists/*
RUN --mount=type=bind,target=/tmp/eventserver,source=/eventserverdownloader,from=eventserverdownloader,rw \
set -x \
&& cd /tmp/eventserver \
&& mkdir -p /zoneminder/defaultconfiges \
&& TARGET_CONFIG=/zoneminder/defaultconfiges \
MAKE_CONFIG_BACKUP='' \
./install.sh \
--install-es \
--no-install-hook \
--install-config \
--no-interactive \
--no-pysudo \
--no-hook-config-upgrade \
&& mkdir -p /zoneminder/estools \
&& cp ./tools/* /zoneminder/estools
# Fix default es config
# https://stackoverflow.com/a/16987794
RUN set -x \
&& sed -i "/^\[general\]$/,/^\[/ s|^secrets.*=.*|secrets=/config/secrets.ini|" /zoneminder/defaultconfiges/zmeventnotification.ini \
&& sed -i "/^\[fcm\]$/,/^\[/ s|^token_file.*=.*|token_file=/config/tokens.txt|" /zoneminder/defaultconfiges/zmeventnotification.ini \
&& sed -i "/^\[customize\]$/,/^\[/ s|^console_logs.*=.*|console_logs=yes|" /zoneminder/defaultconfiges/zmeventnotification.ini \
&& sed -i "/^\[customize\]$/,/^\[/ s|^use_hooks.*=.*|use_hooks=no|" /zoneminder/defaultconfiges/zmeventnotification.ini \
&& sed -i "/^\[network\]$/,/^\[/ s|^.*address.*=.*|address=0.0.0.0|" /zoneminder/defaultconfiges/zmeventnotification.ini \
&& sed -i "/^\[auth\]$/,/^\[/ s|^enable.*=.*|enable=no|" /zoneminder/defaultconfiges/zmeventnotification.ini
# Fix default es secrets
RUN set -x \
&& sed -i "/^\[secrets\]$/,/^\[/ s|^ES_CERT_FILE.*=.*|ES_CERT_FILE=/config/ssl/cert.cer|" /zoneminder/defaultconfiges/secrets.ini \
&& sed -i "/^\[secrets\]$/,/^\[/ s|^ES_KEY_FILE.*=.*|ES_KEY_FILE=/config/ssl/key.pem|" /zoneminder/defaultconfiges/secrets.ini
# Copy rootfs
COPY --from=rootfs-converter /rootfs /
ENV \
ES_DEBUG_ENABLED=1 \
ES_COMMON_NAME=localhost \
ES_ENABLE_AUTH=0 \
ES_ENABLE_DHPARAM=1 \
USE_SECURE_RANDOM_ORG=1
LABEL \
com.github.alexyao2015.es_version=${ES_VERSION}
EXPOSE 443/tcp
EXPOSE 9000/tcp