Skip to content

Commit 2c322ab

Browse files
committed
Temporarily reduce mount script for debugging
1 parent 878fada commit 2c322ab

File tree

2 files changed

+31
-23
lines changed

2 files changed

+31
-23
lines changed

Dockerfile

+6-2
Original file line numberDiff line numberDiff line change
@@ -160,8 +160,12 @@ RUN apk add openssh \
160160
&& cd /etc/ssh/ \
161161
&& ssh-keygen -A
162162

163-
# Add SMB Client
164-
RUN apk add --no-cache samba-client curl
163+
# # Add SMB Client
164+
# RUN apk add --no-cache samba-client curl
165+
# Add cifs-utils
166+
RUN apk add --no-cache cifs-utils curl
167+
# Install Azure CLI
168+
RUN curl -L https://aka.ms/InstallAzureCli | bash
165169

166170
# Copy the mount script
167171
COPY mount-azure-file-share.sh /usr/local/bin/mount-azure-file-share.sh

mount-azure-file-share.sh

+25-21
Original file line numberDiff line numberDiff line change
@@ -9,32 +9,36 @@ set -e
99
# Print the current user (ensure this script is running as root)
1010
echo "Running as user: $(whoami)"
1111

12+
# log in to azure cli
13+
az login --identity
14+
1215
# Create mount point if it doesn't exist
1316
mkdir -p $MOUNT_POINT
1417

15-
# Mount Azure File Share using the storage account key
16-
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
1718

18-
# Ensure the mount is successful
19-
if mountpoint -q $MOUNT_POINT; then
20-
echo "Azure File Share mounted successfully at $MOUNT_POINT"
21-
else
22-
echo "Failed to mount Azure File Share at $MOUNT_POINT"
23-
exit 1
24-
fi
19+
# # Mount Azure File Share using the storage account key
20+
# 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
21+
22+
# # Ensure the mount is successful
23+
# if mountpoint -q $MOUNT_POINT; then
24+
# echo "Azure File Share mounted successfully at $MOUNT_POINT"
25+
# else
26+
# echo "Failed to mount Azure File Share at $MOUNT_POINT"
27+
# exit 1
28+
# fi
2529

26-
# Create required subdirectories if they don't exist
27-
mkdir -p $MOUNT_POINT/files
28-
mkdir -p $MOUNT_POINT/public
30+
# # Create required subdirectories if they don't exist
31+
# mkdir -p $MOUNT_POINT/files
32+
# mkdir -p $MOUNT_POINT/public
2933

30-
# Set permissions for the mounted directories
31-
chown -R apache:www-data $MOUNT_POINT/files
32-
find $MOUNT_POINT/files -type d -exec chmod 750 {} \; # for directories
33-
find $MOUNT_POINT/files -type f -exec chmod 640 {} \; # for files
34+
# # Set permissions for the mounted directories
35+
# chown -R apache:www-data $MOUNT_POINT/files
36+
# find $MOUNT_POINT/files -type d -exec chmod 750 {} \; # for directories
37+
# find $MOUNT_POINT/files -type f -exec chmod 640 {} \; # for files
3438

35-
# Ensure that $MOUNT_POINT/public is accessible to the web server
36-
chown -R apache:www-data $MOUNT_POINT/public
37-
find $MOUNT_POINT/public -type d -exec chmod 750 {} \; # for directories
38-
find $MOUNT_POINT/public -type f -exec chmod 640 {} \; # for files
39+
# # Ensure that $MOUNT_POINT/public is accessible to the web server
40+
# chown -R apache:www-data $MOUNT_POINT/public
41+
# find $MOUNT_POINT/public -type d -exec chmod 750 {} \; # for directories
42+
# find $MOUNT_POINT/public -type f -exec chmod 640 {} \; # for files
3943

40-
echo "Permissions set for Azure File Share at $MOUNT_POINT"
44+
# echo "Permissions set for Azure File Share at $MOUNT_POINT"

0 commit comments

Comments
 (0)