Skip to content

Commit a6aaa87

Browse files
committed
Adjust setup to mount Azure file share
1 parent 9a53f3b commit a6aaa87

File tree

3 files changed

+50
-19
lines changed

3 files changed

+50
-19
lines changed

Dockerfile

+5-1
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,11 @@ RUN apk add openssh \
161161
&& ssh-keygen -A
162162

163163
# Add SMB Client
164-
RUN apk add --no-cache samba-client
164+
RUN apk add --no-cache samba-client curl
165+
166+
# Copy the mount script
167+
COPY mount-azure-file-share.sh /usr/local/bin/mount-azure-file-share.sh
168+
RUN chmod +x /usr/local/bin/mount-azure-file-share.sh
165169

166170
# Add themes
167171
ADD plugins/themes /var/www/html/plugins/themes

entrypoint.sh

+8-18
Original file line numberDiff line numberDiff line change
@@ -3,38 +3,28 @@ set -e
33

44
# Get env vars in the Dockerfile to show up in the SSH session
55
eval $(printenv | sed -n "s/^\([^=]\+\)=\(.*\)$/export \1=\2/p" | sed 's/"/\\\"/g' | sed '/=/s//="/' | sed 's/$/"/' >> /etc/profile)
6-
6+
7+
# Mount Azure File Share
8+
/usr/local/bin/mount-azure-file-share.sh
9+
710
echo "Starting SSH ..."
811
/usr/sbin/sshd
912

1013
chmod +x /usr/local/bin/ojs-variable
1114
# 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)
1215
sed -i 's:/tmp/ojs.config.inc.php:/tmp/config.inc.php:' /usr/local/bin/ojs-variable
1316

14-
# Create required /mnt/azure/ subdirectories if they don't exist
15-
mkdir -p /mnt/azure/files
16-
mkdir -p /mnt/azure/public
17-
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
21-
22-
# Ensure that /mnt/azure/public is accessible to the web server
23-
chown -R apache:www-data /mnt/azure/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-
2717
echo "Adding symlink to persistent /mnt/azure/public directory in web root"
28-
ln -s /mnt/azure/public /var/www/html/public
18+
ln -s /mnt/azure/public /var/www/html/public || echo "Symlink already exists"
2919

3020
declare -A configVariable
3121
if [ -f $SAVED_OJS_CONF ]
3222
then
33-
echo "Using existing config.inc.php from /mnt/azure/config.inc.php"
23+
echo "Using existing config.inc.php from /mnt/azure/files/config.inc.php"
3424
cp $SAVED_OJS_CONF $OJS_CONF
3525
else
3626
# Set config variables using env variables https://github.com/pkp/ojs/blob/main/config.TEMPLATE.inc.php
37-
echo "No existing config in /mnt/azure. Updating OJS config based on env variables..."
27+
echo "No existing config in /mnt/azure/files. Updating OJS config based on env variables..."
3828
# General
3929
configVariable["installed"]="On"
4030
# configVariable["base_url"]=$WEBSITE_HOSTNAME
@@ -50,7 +40,7 @@ else
5040
configVariable["locale"]="en"
5141
# Files
5242
configVariable["files_dir"]="/mnt/azure/files"
53-
configVariable["public_files_dir"]="../../../mnt/azure/public"
43+
configVariable["public_files_dir"]="/mnt/azure/public"
5444
# Security
5545
configVariable["force_ssl"]="On"
5646
configVariable["salt"]=$SALT

mount-azure-file-share.sh

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
#!/bin/bash
2+
set -e
3+
4+
: "${AZURE_FILE_SHARE_NAME:?Variable not set or empty}"
5+
: "${AZURE_STORAGE_ACCOUNT_KEY:?Variable not set or empty}"
6+
: "${AZURE_STORAGE_ACCOUNT_NAME:?Variable not set or empty}"
7+
: "${MOUNT_POINT:?Variable not set or empty}"
8+
9+
# Create mount point if it doesn't exist
10+
mkdir -p $MOUNT_POINT
11+
12+
# Mount Azure File Share using the storage account key
13+
mount -t cifs //$AZURE_STORAGE_ACCOUNT_NAME.file.core.windows.net/$AZURE_FILE_SHARE_NAME $MOUNT_POINT -o vers=3.0,username=$AZURE_STORAGE_ACCOUNT_NAME,password=$AZURE_STORAGE_ACCOUNT_KEY,uid=apache,gid=www-data,dir_mode=0750,file_mode=0640,serverino
14+
15+
# Ensure the mount is successful
16+
if mountpoint -q $MOUNT_POINT; then
17+
echo "Azure File Share mounted successfully at $MOUNT_POINT"
18+
else
19+
echo "Failed to mount Azure File Share at $MOUNT_POINT"
20+
exit 1
21+
fi
22+
23+
# Create required subdirectories if they don't exist
24+
mkdir -p $MOUNT_POINT/files
25+
mkdir -p $MOUNT_POINT/public
26+
27+
# Set permissions for the mounted directories
28+
chown -R apache:www-data $MOUNT_POINT/files
29+
find $MOUNT_POINT/files -type d -exec chmod 750 {} \; # for directories
30+
find $MOUNT_POINT/files -type f -exec chmod 640 {} \; # for files
31+
32+
# Ensure that $MOUNT_POINT/public is accessible to the web server
33+
chown -R apache:www-data $MOUNT_POINT/public
34+
find $MOUNT_POINT/public -type d -exec chmod 750 {} \; # for directories
35+
find $MOUNT_POINT/public -type f -exec chmod 640 {} \; # for files
36+
37+
echo "Permissions set for Azure File Share at $MOUNT_POINT"

0 commit comments

Comments
 (0)