Skip to content

Commit adb7db7

Browse files
committed
Adjust build to use Azure file share
1 parent 94792d8 commit adb7db7

File tree

2 files changed

+18
-16
lines changed

2 files changed

+18
-16
lines changed

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ENV COMPOSER_ALLOW_SUPERUSER=1 \
1212
OJS_CLI_INSTALL="1" \
1313
OJS_WEB_CONF="/etc/apache2/conf.d/ojs.conf" \
1414
OJS_CONF="/var/www/html/config.inc.php" \
15-
SAVED_OJS_CONF="/home/config.inc.php"
15+
SAVED_OJS_CONF="/mnt/azure/config.inc.php"
1616

1717
# PHP_INI_DIR to be symmetrical with official php docker image
1818
ENV PHP_INI_DIR /etc/php/8.1
@@ -179,4 +179,4 @@ EXPOSE 443
179179

180180
# VOLUME [ "/var/www/files", "/var/www/html/public" ]
181181

182-
ENTRYPOINT [ "/var/www/html/entrypoint.sh" ]
182+
ENTRYPOINT [ "/var/www/html/entrypoint.sh" ]

entrypoint.sh

+16-14
Original file line numberDiff line numberDiff line change
@@ -11,28 +11,30 @@ chmod +x /usr/local/bin/ojs-variable
1111
# Temporary fix for error in ojs-variable (fixed here https://gitlab.com/pkp-org/docker/ojs/-/commit/f4f33f370e7c765b599868f0ca701898c875b47f, but not in stable-3_4_0 branch)
1212
sed -i 's:/tmp/ojs.config.inc.php:/tmp/config.inc.php:' /usr/local/bin/ojs-variable
1313

14-
echo "Adding /home/files if not already present"
15-
mkdir -p /home/files
16-
chown -R apache:www-data /home/files
17-
find /home/files -type d -exec chmod 750 {} \; # for directories
18-
find /home/files -type f -exec chmod 640 {} \; # for files
14+
# Create required /mnt/azure/ subdirectories if they don't exist
15+
mkdir -p /mnt/azure/files
16+
mkdir -p /mnt/azure/public
1917

20-
# Ensure that /home/public is accessible to the web server
21-
chown -R apache:www-data /home/public
22-
find /home/public -type d -exec chmod 750 {} \; # for directories
23-
find /home/public -type f -exec chmod 640 {} \; # for files
18+
chown -R apache:www-data /mnt/azure/files
19+
find /mnt/azure/files -type d -exec chmod 750 {} \; # for directories
20+
find /mnt/azure/files -type f -exec chmod 640 {} \; # for files
2421

25-
echo "Adding symlink to persistent /home/public directory in web root"
26-
ln -s /home/public /var/www/html/public
22+
# Ensure that /mnt/azure/public is accessible to the web server
23+
chown -R apache:www-data /mnt/azure/files/public
24+
find /mnt/azure/public -type d -exec chmod 750 {} \; # for directories
25+
find /mnt/azure/public -type f -exec chmod 640 {} \; # for files
26+
27+
echo "Adding symlink to persistent /mnt/azure/public directory in web root"
28+
ln -s /mnt/azure/public /var/www/html/public
2729

2830
declare -A configVariable
2931
if [ -f $SAVED_OJS_CONF ]
3032
then
31-
echo "Using existing config.inc.php from /home/config.inc.php"
33+
echo "Using existing config.inc.php from /mnt/azure/config.inc.php"
3234
cp $SAVED_OJS_CONF $OJS_CONF
3335
else
3436
# Set config variables using env variables https://github.com/pkp/ojs/blob/main/config.TEMPLATE.inc.php
35-
echo "No existing config in /home. Updating OJS config based on env variables..."
37+
echo "No existing config in /mnt/azure. Updating OJS config based on env variables..."
3638
# General
3739
configVariable["installed"]="On"
3840
# configVariable["base_url"]=$WEBSITE_HOSTNAME
@@ -47,7 +49,7 @@ else
4749
# Locatlization
4850
configVariable["locale"]="en"
4951
# Files
50-
configVariable["files_dir"]="/home/files"
52+
configVariable["files_dir"]="/mnt/azure/files"
5153
# Security
5254
configVariable["force_ssl"]="On"
5355
configVariable["salt"]=$SALT

0 commit comments

Comments
 (0)