mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 09:42:02 +08:00
DEV: resolve symlinks in docker dev
symlinks where not fully resolved leading to docker not booting when you had symlinks in the plugins directory pointing at relative paths.
This commit is contained in:
parent
1a31a403ce
commit
d8412f409a
|
@ -70,7 +70,7 @@ for symlink in $(find $PLUGINS_DIR -type l); do
|
|||
# This deliberately does not use the `-f` option to canonicalize the value
|
||||
# because 1) the BSD `readlink` does not support the option, and 2) a
|
||||
# relative link would not work inside the container anyway.
|
||||
symlink_value=$(readlink $symlink)
|
||||
symlink_value=$(readlink -f $symlink)
|
||||
mount_plugin_symlinks+=" -v ${symlink_value}:${symlink_value}:delegated"
|
||||
done
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user