We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4382e1b commit 01fd9acCopy full SHA for 01fd9ac
railway-entrypoint.sh
@@ -11,7 +11,8 @@ if [[ -z "${RCLONE_CONFIG}" ]]; then
11
echo "RCLONE_CONFIG is not specified. Files will not persist"
12
else
13
echo "Copying rclone config..."
14
- echo $RCLONE_CONFIG | base64 -d > .rclone.conf
+ mkdir -p /home/coder/.config/rclone
15
+ echo $RCLONE_CONFIG | base64 -d > /home/coder/.config/rclone/rclone.conf
16
17
# serve remote files on the first item in the rclone config
18
rclone serve sftp code-server-files:/home/coder/ --no-auth --vfs-cache-mode full&
0 commit comments