ipsingh06 / seedsync

Sync your seedbox. Fast. And more.
https://ipsingh06.github.io/seedsync/
Apache License 2.0
304 stars 41 forks source link

Can't find config file in Ubuntu 18.04 (SSH Docker instance on seedbox) #87

Closed jamauai closed 3 years ago

jamauai commented 3 years ago

Where is the config file located in Ubuntu? Running SSH Docker instance on a seedbox and was able to install SeedSync via .DEB file, but can't seem to find the settings file. Would like to be able to change the web UI port from 8800 to something else.

quadcom commented 3 years ago

I'm a little confused. If I understand you, you've installed seedsync on a seedbox?

jamauai commented 3 years ago

It's an Ubuntu Docker container on a seedbox. I guess the question simply should have been, where is the Linux config file stored?

quadcom commented 3 years ago

can you explain your use case for putting SS on a Seedbox?

Normally, SS is used to pull data FROM a seedbox to your local destination. Most people, including myself, use SS in a docker container running on a Synology NAS that we have in our home.

Having SS on the Seedbox is going to pull data ONTO the seedbox. Is this what you had intended to have happen?

quadcom commented 3 years ago

in answer to your question. You decide where the config file is located. Your container build script is going to define the config directory on the host system. That is the DIR mapping.

You can set the port mapping and DIR mappings in the container run command

docker run \ -p 8800:8800 \ -v :/downloads \ -v :/config \ ipsingh06/seedsync

https://ipsingh06.github.io/seedsync/install/

jamauai commented 3 years ago

Doh! Well this is embarrassing. I've been using Resilio for so long I thought for a moment I needed SS on both sides. My apologies! Thank you for all your help.