forked from xibosignage/xibo-cms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile.dev
136 lines (123 loc) · 4.56 KB
/
Dockerfile.dev
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
# Xibo Development Container
# This is the dev container and doesn't contain CRON or composer it maps the PWD straight through
# Stage 1
# Build the CMS container
FROM debian:bullseye-slim
LABEL org.opencontainers.image.authors="[email protected]"
RUN apt update && \
apt install -y software-properties-common lsb-release ca-certificates curl && \
rm -rf /var/lib/apt/lists/* && \
ln -fs /usr/share/zoneinfo/Etc/UTC /etc/localtime
# Add sury.org PHP Repository
RUN curl -sSLo /usr/share/keyrings/deb.sury.org-php.gpg https://packages.sury.org/php/apt.gpg && \
sh -c 'echo "deb [signed-by=/usr/share/keyrings/deb.sury.org-php.gpg] https://packages.sury.org/php/ $(lsb_release -sc) main" > /etc/apt/sources.list.d/php.list'
RUN LC_ALL=C.UTF-8 DEBIAN_FRONTEND=noninteractive apt update && apt upgrade -y && apt install -y \
tar \
bash \
curl \
apache2 \
libapache2-mod-xsendfile \
netcat \
iputils-ping \
php8.2 \
libapache2-mod-php8.2 \
php8.2-zmq \
php8.2-gd \
php8.2-dom \
php8.2-pdo \
php8.2-zip \
php8.2-mysql \
php8.2-gettext \
php8.2-soap \
php8.2-iconv \
php8.2-curl \
php8.2-ctype \
php8.2-fileinfo \
php8.2-xml \
php8.2-simplexml \
php8.2-mbstring \
php8.2-memcached \
php8.2-phar \
php8.2-opcache \
php8.2-mongodb \
tzdata \
msmtp \
openssl \
cron \
default-mysql-client \
&& dpkg-reconfigure --frontend noninteractive tzdata \
&& rm -rf /var/lib/apt/lists/*
RUN update-alternatives --set php /usr/bin/php8.2
# Enable Apache module
RUN a2enmod rewrite \
&& a2enmod headers
# Add all necessary config files in one layer
ADD docker/ /
# Adjust file permissions as appropriate
RUN chmod +x /entrypoint.sh /usr/local/bin/httpd-foreground /usr/local/bin/wait-for-command.sh \
/etc/periodic/15min/cms-db-backup && \
chmod 777 /tmp
# Update the PHP.ini file
RUN sed -i "s/error_reporting = .*$/error_reporting = E_ERROR | E_WARNING | E_PARSE/" /etc/php/8.2/apache2/php.ini && \
sed -i "s/session.gc_probability = .*$/session.gc_probability = 1/" /etc/php/8.2/apache2/php.ini && \
sed -i "s/session.gc_divisor = .*$/session.gc_divisor = 100/" /etc/php/8.2/apache2/php.ini && \
sed -i "s/allow_url_fopen = .*$/allow_url_fopen = Off/" /etc/php/8.2/apache2/php.ini && \
sed -i "s/expose_php = .*$/expose_php = Off/" /etc/php/8.2/apache2/php.ini && \
sed -i "s/error_reporting = .*$/error_reporting = E_ERROR | E_WARNING | E_PARSE/" /etc/php/8.2/cli/php.ini && \
sed -i "s/session.gc_probability = .*$/session.gc_probability = 1/" /etc/php/8.2/cli/php.ini && \
sed -i "s/session.gc_divisor = .*$/session.gc_divisor = 100/" /etc/php/8.2/cli/php.ini && \
sed -i "s/allow_url_fopen = .*$/allow_url_fopen = Off/" /etc/php/8.2/cli/php.ini && \
sed -i "s/expose_php = .*$/expose_php = Off/" /etc/php/8.2/cli/php.ini
# Capture the git commit for this build if we provide one
ARG GIT_COMMIT=dev
# Set some environment variables
ENV CMS_DEV_MODE=true \
INSTALL_TYPE=dev \
XMR_HOST=xmr \
MYSQL_HOST=db \
MYSQL_PORT=3306 \
MYSQL_USER=root \
MYSQL_PASSWORD=root \
MYSQL_DATABASE=cms \
MYSQL_BACKUP_ENABLED=false \
MYSQL_ATTR_SSL_CA=none \
MYSQL_ATTR_SSL_VERIFY_SERVER_CERT=true \
CMS_SERVER_NAME=localhost \
CMS_ALIAS=none \
CMS_PHP_SESSION_GC_MAXLIFETIME=1440 \
CMS_PHP_POST_MAX_SIZE=2G \
CMS_PHP_UPLOAD_MAX_FILESIZE=2G \
CMS_PHP_MAX_EXECUTION_TIME=300 \
CMS_PHP_MEMORY_LIMIT=256M \
CMS_PHP_CLI_MAX_EXECUTION_TIME=0 \
CMS_PHP_CLI_MEMORY_LIMIT=256M \
CMS_PHP_COOKIE_SECURE=Off \
CMS_PHP_COOKIE_HTTP_ONLY=On \
CMS_PHP_COOKIE_SAMESITE=Lax \
CMS_APACHE_START_SERVERS=2 \
CMS_APACHE_MIN_SPARE_SERVERS=5 \
CMS_APACHE_MAX_SPARE_SERVERS=10 \
CMS_APACHE_MAX_REQUEST_WORKERS=60 \
CMS_APACHE_MAX_CONNECTIONS_PER_CHILD=300 \
CMS_APACHE_TIMEOUT=30 \
CMS_APACHE_OPTIONS_INDEXES=false \
CMS_QUICK_CHART_URL=http://quickchart:3400 \
CMS_APACHE_SERVER_TOKENS=OS \
CMS_APACHE_LOG_REQUEST_TIME=true \
CMS_USE_MEMCACHED=true \
MEMCACHED_HOST=memcached \
MEMCACHED_PORT=11211 \
CMS_USAGE_REPORT=true \
XTR_ENABLED=false \
GIT_COMMIT=$GIT_COMMIT
# Expose port 80
EXPOSE 80
# Map the source files into /var/www/cms
# Create library and cache, because they might not exist
# Create /var/www/backup so that we have somewhere for entrypoint to log errors.
RUN mkdir -p /var/www/cms && \
mkdir -p /var/www/cms/library/temp && \
mkdir -p /var/www/cms/cache && \
mkdir -p /var/www/backup
# Run entry
CMD ["/entrypoint.sh"]