File tree 2 files changed +9
-5
lines changed
2 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -139,7 +139,11 @@ RUN set -xe \
139
139
&& find . -name ".git" -exec rm -Rf '{}' \; \
140
140
&& find . -name ".travis.yml" -exec rm -Rf '{}' \; \
141
141
&& 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
143
147
144
148
# Fix mixed content issue
145
149
COPY .htaccess /var/www/html/
@@ -173,6 +177,6 @@ EXPOSE 8000 2222
173
177
EXPOSE 80
174
178
EXPOSE 443
175
179
176
- VOLUME [ "/var/www/files" , "/var/www/html/public" ]
180
+ # VOLUME [ "/var/www/files", "/var/www/html/public" ]
177
181
178
182
ENTRYPOINT [ "/var/www/html/entrypoint.sh" ]
Original file line number Diff line number Diff line change @@ -13,9 +13,9 @@ sed -i 's:/tmp/ojs.config.inc.php:/tmp/config.inc.php:' /usr/local/bin/ojs-varia
13
13
14
14
echo " Adding /home/files if not already present"
15
15
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
19
19
20
20
declare -A configVariable
21
21
if [ -f $SAVED_OJS_CONF ]
You can’t perform that action at this time.
0 commit comments