-
(Converted to a support thread for @krth8) |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 12 replies
-
Hi! Just stumbled upon this very interesting looking tool! We are a small Film/VFX shop and would love to try this on our Synology through docker. When installing the latest version from the registry i am getting some error messages (which i am sure is user error) Would love to get some pointers here! 🥇 elonen-clapshot1
|
Beta Was this translation helpful? Give feedback.
-
There are basically two ways of mounting data directories on Docker:
Option 2 is what the example makefile uses. Here's roughly how to mimic it:
This will mount your local directory Based on the log you pasted, it looks like you are using one of the startup scripts from If you are trying to get this running on a NAS device (Synology) using the docker demo image (which is preconfigured for running on your local computer), you'll probably next bump into the following issues:
|
Beta Was this translation helpful? Give feedback.
There are basically two ways of mounting data directories on Docker:
Option 2 is what the example makefile uses. Here's roughly how to mimic it:
This will mount your local directory
./my_data_dir
to/mt/clapshot-data
inside the Docker image.Based on the log you pasted, it looks like you are using one of the startup scripts from
test/
pretty much as is. If you look inside it, you'll notice that it usesDIR="/mnt/clapshot-data/data"
, so you might need tomkdir ./my_data_dir/data
…