Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use on QNAP system #1

Closed
therealspeez opened this issue Dec 11, 2017 · 7 comments
Closed

Use on QNAP system #1

therealspeez opened this issue Dec 11, 2017 · 7 comments

Comments

@therealspeez
Copy link

First post on GitHub, first use of containers/docker so sorry if this is the wrong spot.

I'm trying to get this setup within Container station on my QNAP NAS box and I have it up and running - but my storage folder is empty and thus I can't see any of the data on my server to try and run the duplicate scan on. Within Container station there is a function to open a terminal (more like the run box on Windows, it's not a full command prompt screen just an input box). I have (tried) to run the reference commands with -v to set my main drive (named DataVol1) to the storage, but no dice.

Any experience or thoughts on how to get this mapped? This (sounds) like an awesome application ( use dupguru on my laptop frequently) but I'm not quite there yet.

Thanks

@jlesage
Copy link
Owner

jlesage commented Dec 11, 2017

I don't have a QNAP NAS, but I think you can add a volume mapping by going to advanced settings of the container and then choose "Shared Folders".

@jlesage
Copy link
Owner

jlesage commented Feb 19, 2018

Closing the issue. Feel free to re-open if you still have problems.

@jlesage jlesage closed this as completed Feb 19, 2018
@cko-skverlag
Copy link

same Problem here - i can not choose the shared folders in container station advanced settings. thanks

@jlesage
Copy link
Owner

jlesage commented Jan 24, 2019

What do you mean exactly? You don't find the settings?

@cko-skverlag
Copy link

Hi, i found the settings, but they don't allow to add a shared folder through the gui of the container station. I was able to get it done through the terminal using your code:

docker run -d --name=dupeguru -p 5800:5800 -v /docker/appdata/dupeguru:/config:rw -v $HOME:/share/CACHEDEV1_DATA/Download:rw jlesage/dupeguru

but i still don't have access on the directory's content
dupeguru_folder
advanced settings_port_containerstation
advanced settings_share_containerstation

@jlesage
Copy link
Owner

jlesage commented Jan 24, 2019

I think the volume mapping in your docker run command is not correct. Try to create the container like this:

docker run -d --name=dupeguru -p 5800:5800 -v /docker/appdata/dupeguru:/config:rw -v /share/CACHEDEV1_DATA/Download:/storage:rw jlesage/dupeguru

Then, in the container, you should see your files under /storage.
If you still don't see them, hen it's probably a permission issue. Make sure to properly set USER_ID and GROUP_ID environment variables. See https://github.com/jlesage/docker-dupeguru#usergroup-ids

@cko-skverlag
Copy link

Hi, thanks for your support. It was a problem with the permissions. I had to add the correct USER_ID and create a user for container station. THANKS!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants