Skip to content

Commit 7495d37

Browse files
Chris Nuzumclaude
andcommitted
Remove VOLUME declaration for better container platform compatibility
Some container platforms require volumes to be configured via their platform rather than Dockerfile VOLUME declarations. The /data directory setup remains for proper permission handling when volumes are mounted. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 89ac2dc commit 7495d37

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@ RUN chmod +x /usr/local/bin/docker-entrypoint.sh
2727
# Create /data directory as root and set ownership to node user
2828
RUN mkdir -p /data && chown node:node /data
2929

30-
# Declare volume for external mounting
31-
VOLUME ["/data"]
30+
# Note: Railway volumes are configured via Railway dashboard, not Dockerfile VOLUME
3231

3332
EXPOSE 3001
3433

0 commit comments

Comments
 (0)