-
Bug descriptionWithin /Data/ I have made a symlink to a /shared/ folder that is located elsewhere. The symlink works in all other file browsers, but when I spin up the foundry server, /shared/ does not show up inside User Data in the file browser. Steps to reproduce
Expected behaviorI use this exact same setup with two Foundry servers hosted on a Raspberry Pi right now, so I would expect the symlink to work within Foundry. I am left to assume that there's something going on with this container that's preventing the symlink from working inside Foundry. Container metadatacom.foundryvtt.version = "12.331"
org.opencontainers.image.authors = "[email protected]"
org.opencontainers.image.created = "2024-08-16T01:48:32.610Z"
org.opencontainers.image.description = "An easy-to-deploy Dockerized Foundry Virtual Tabletop server."
org.opencontainers.image.licenses = "MIT"
org.opencontainers.image.revision = "61a1ac11d7bd298b93fa6cebb102158ddb1d020e"
org.opencontainers.image.source = "https://github.com/felddy/foundryvtt-docker"
org.opencontainers.image.title = "foundryvtt-docker"
org.opencontainers.image.url = "https://github.com/felddy/foundryvtt-docker"
org.opencontainers.image.vendor = "Geekpad"
org.opencontainers.image.version = "12.331.0" Relevant log outputNo response Code of Conduct
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Docker cannot access files that are not mounted into the container. If your symbolic link points to a nonexistent location (from the container's point of view) you will get the behavior you are experiencing. You can however you can mount your shared assets into both containers using additional volume mounts. See: |
Beta Was this translation helpful? Give feedback.
Docker cannot access files that are not mounted into the container. If your symbolic link points to a nonexistent location (from the container's point of view) you will get the behavior you are experiencing. You can however you can mount your shared assets into both containers using additional volume mounts.
See: