Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
writeFrame
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gargantext
writeFrame
Commits
12c88e2c
Commit
12c88e2c
authored
Nov 29, 2021
by
Danilo Bargen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Entrypoint: Ensure that uploaded files are not executable
Signed-off-by:
Danilo Bargen
<
mail@dbrgn.ch
>
parent
bb9dfa1e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
docker-entrypoint.sh
resources/docker-entrypoint.sh
+2
-0
No files found.
resources/docker-entrypoint.sh
View file @
12c88e2c
...
...
@@ -29,8 +29,10 @@ fi
# Change owner and permission if filesystem backend is used and user has root permissions
if
[
"
$UID
"
-eq
0
]
&&
[
"
$CMD_IMAGE_UPLOAD_TYPE
"
=
"filesystem"
]
;
then
if
[
"
$UID
"
-eq
0
]
;
then
echo
"Updating uploads directory permissions (
$UPLOADS_MODE
)"
chown
-R
hedgedoc ./public/uploads
chmod
$UPLOADS_MODE
./public/uploads
find ./public/uploads
-type
f
-executable
-exec
chmod
a-x
{}
\;
else
echo
"
#################################################################
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment