diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index a96f879..6bc47fa 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -4,9 +4,10 @@
-
+
+
@@ -215,6 +216,7 @@
-
+
+
\ No newline at end of file
diff --git a/Dockerfile b/Dockerfile
index c5e63a3..b44e520 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -45,9 +45,6 @@ LABEL cloudronManifestPath="CloudronManifest.json"
VOLUME [ "/app/data" ]
EXPOSE 3000
-RUN mkdir /app/data
-RUN ln -s /app/config.yml /app/data/config.yml
-
ENV DEBUG="blossom-server,blossom-server:*"
CMD [ "/app/start.sh" ]
diff --git a/start.sh b/start.sh
index 30fcd0a..b6d076d 100644
--- a/start.sh
+++ b/start.sh
@@ -3,5 +3,8 @@
echo "==> Changing ownership"
chown -R cloudron:cloudron /app/data
+echo "==> Symlink the config.yml to the editable /app/data directory"
+ln -s /app/config.yml /app/data/config.yml
+
echo "==> Starting Blossom"
exec /usr/local/bin/gosu cloudron:cloudron node /app