https://github.com/acaranta/docker-dropbox
a dropbox in a docker container
https://github.com/acaranta/docker-dropbox
Last synced: about 1 year ago
JSON representation
a dropbox in a docker container
- Host: GitHub
- URL: https://github.com/acaranta/docker-dropbox
- Owner: acaranta
- License: mit
- Created: 2016-01-30T09:16:51.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2025-03-19T11:48:32.000Z (about 1 year ago)
- Last Synced: 2025-03-19T12:35:32.634Z (about 1 year ago)
- Language: Shell
- Size: 10.7 KB
- Stars: 3
- Watchers: 1
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
docker-dropbox
===================
A headless containerized docker container for dropbox.
# How to use
```
#first create the persistent file paths (ie in /srv) :
mkdir -p /srv/dropbox/{data,conf}
#then run the dropbox container for the first time :
docker run --rm -ti -v /srv/dropbox/conf:/.dropbox -v /srv/dropbox/data:/Dropbox acaranta/docker-dropbox
# Dropbox will then tell you to visit a link
#in your browser to link this container
#to your dropbox account
# Once done, kill the container you juste launched [CTRC]+C just work
#and run :
docker run -d -v /srv/dropbox/conf:/.dropbox -v /srv/dropbox/data:/Dropbox acaranta/docker-dropbox
```
# Source
the Dockerfile is greatly inspired from https://github.com/CenturyLinkLabs/ctlc-docker-dropbox
hence the LICENSE ;)