Skip to content

Commit f91def6

Browse files
Fixing whitespaces and tailing spaces
1 parent f991123 commit f91def6

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

docker-compose.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ services:
8282
- backend
8383

8484
### PHP Worker Container #####################################
85+
8586
php-worker:
8687
build:
8788
context: ./php-worker

php-fpm/Dockerfile-56

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ ARG INSTALL_SOAP=false
4444
RUN if [ ${INSTALL_SOAP} = true ]; then \
4545
# Install the soap extension
4646
apt-get -y update && \
47-
apt-get -y install libxml2-dev php-soap && \
47+
apt-get -y install libxml2-dev php-soap && \
4848
docker-php-ext-install soap \
4949
;fi
5050

php-fpm/Dockerfile-70

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ MAINTAINER Mahmoud Zalt <mahmoud@zalt.me>
3434
# in the `docker-compose.yml` before the build.
3535
# Example:
3636
# - INSTALL_ZIP_ARCHIVE=true
37-
# - ...
3837
#
3938

4039
#####################################
@@ -139,7 +138,6 @@ RUN if [ ${INSTALL_EXIF} = true ]; then \
139138
docker-php-ext-enable exif \
140139
;fi
141140

142-
143141
#####################################
144142
# PHP Aerospike:
145143
#####################################
@@ -166,6 +164,7 @@ RUN if [ ${INSTALL_AEROSPIKE_EXTENSION} = true ]; then \
166164
#####################################
167165
# Opcache:
168166
#####################################
167+
169168
ARG INSTALL_OPCACHE=false
170169
RUN if [ ${INSTALL_OPCACHE} = true ]; then \
171170
docker-php-ext-install opcache && \
@@ -178,6 +177,7 @@ COPY ./opcache.ini /usr/local/etc/php/conf.d/opcache.ini
178177
#####################################
179178
# Mysqli Modifications:
180179
#####################################
180+
181181
ARG INSTALL_MYSQLI=false
182182
RUN if [ ${INSTALL_MYSQLI} = true ]; then \
183183
docker-php-ext-install mysqli \
@@ -195,6 +195,7 @@ RUN if [ ${INSTALL_TOKENIZER} = true ]; then \
195195
#####################################
196196
# SQL SERVER:
197197
#####################################
198+
198199
ARG MSSQL=false
199200
RUN if [ ${MSSQL} = true ]; then \
200201

@@ -245,7 +246,6 @@ RUN if [ ${MSSQL} = true ]; then \
245246
&& ls -l /opt/microsoft/msodbcsql/ \
246247
&& odbcinst -q -d -n "ODBC Driver 13 for SQL Server" && \
247248

248-
249249
#####################################
250250
# Install sqlsrv y pdo_sqlsrv
251251
# extensions:
@@ -263,8 +263,6 @@ RUN if [ ${MSSQL} = true ]; then \
263263
&& locale-gen \
264264
;fi
265265

266-
267-
268266
#####################################
269267
# Human Language and Character Encoding Support:
270268
#####################################

php-fpm/Dockerfile-71

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ MAINTAINER Mahmoud Zalt <mahmoud@zalt.me>
3434
# in the `docker-compose.yml` before the build.
3535
# Example:
3636
# - INSTALL_ZIP_ARCHIVE=true
37-
# - ...
3837
#
3938

4039
#####################################
@@ -142,6 +141,7 @@ RUN if [ ${INSTALL_AEROSPIKE_EXTENSION} = true ]; then \
142141
#####################################
143142
# Opcache:
144143
#####################################
144+
145145
ARG INSTALL_OPCACHE=false
146146
RUN if [ ${INSTALL_OPCACHE} = true ]; then \
147147
docker-php-ext-install opcache && \
@@ -154,6 +154,7 @@ COPY ./opcache.ini /usr/local/etc/php/conf.d/opcache.ini
154154
#####################################
155155
# Mysqli Modifications:
156156
#####################################
157+
157158
ARG INSTALL_MYSQLI=false
158159
RUN if [ ${INSTALL_MYSQLI} = true ]; then \
159160
docker-php-ext-install mysqli \

0 commit comments

Comments
 (0)