Skip to content

Commit 249d335

Browse files
committed
Use persistent storage for public directory & eliminate some unused files and folders
1 parent 07ec5d9 commit 249d335

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

Dockerfile

+6-2
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,11 @@ RUN set -xe \
139139
&& find . -name ".git" -exec rm -Rf '{}' \; \
140140
&& find . -name ".travis.yml" -exec rm -Rf '{}' \; \
141141
&& find . -name "test" -exec rm -Rf '{}' \; \
142-
&& find . \( -name .gitignore -o -name .gitmodules -o -name .keepme \) -exec rm -Rf '{}' \;
142+
&& find . \( -name .gitignore -o -name .gitmodules -o -name .keepme \) -exec rm -Rf '{}' \; \
143+
# Remove unnecessary (and annoying) files and folders
144+
&& rm -rf /var/www/html/public \
145+
&& rm config.TEMPLATE.inc.php \
146+
&& rm -rf /var/www/html/files
143147

144148
# Fix mixed content issue
145149
COPY .htaccess /var/www/html/
@@ -173,6 +177,6 @@ EXPOSE 8000 2222
173177
EXPOSE 80
174178
EXPOSE 443
175179

176-
VOLUME [ "/var/www/files", "/var/www/html/public" ]
180+
# VOLUME [ "/var/www/files", "/var/www/html/public" ]
177181

178182
ENTRYPOINT [ "/var/www/html/entrypoint.sh" ]

entrypoint.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ sed -i 's:/tmp/ojs.config.inc.php:/tmp/config.inc.php:' /usr/local/bin/ojs-varia
1313

1414
echo "Adding /home/files if not already present"
1515
mkdir -p /home/files
16-
chmod 755 /home/files
17-
chown apache /home/files
18-
chgrp apache /home/files
16+
17+
echo "Adding symlink to persistent /home/public directory in web root"
18+
ln -s /home/public /var/www/html/public
1919

2020
declare -A configVariable
2121
if [ -f $SAVED_OJS_CONF ]

0 commit comments

Comments
 (0)