Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pelson/heroku-with-dropbox-mount
A proof of concept to mount a dropbox folder within a heroku app
https://github.com/pelson/heroku-with-dropbox-mount
Last synced: 2 days ago
JSON representation
A proof of concept to mount a dropbox folder within a heroku app
- Host: GitHub
- URL: https://github.com/pelson/heroku-with-dropbox-mount
- Owner: pelson
- License: bsd-3-clause
- Created: 2017-02-06T09:12:14.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-02-08T21:32:41.000Z (almost 8 years ago)
- Last Synced: 2024-12-04T17:23:47.668Z (2 months ago)
- Language: Python
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# About
A proof-of-concept to use FUSE to mount Dropbox on Heroku.
** Note: ultimately, this was a proof-of-concept that failed. The pre-requisites required for FUSE mount are not available to Heroku containers, though this proof-of-concept can be run locally.**
Heroku + FUSE thread on twitter: https://twitter.com/pypelson/status/828979866770870272
# Running locally
## Build
docker build --tag testing ./
## Run
docker run \
--device /dev/fuse \
--cap-add SYS_ADMIN \
-p 5000:5000 \
-e PORT=5000 \
-e DROPBOX_TOKEN= \
-t -i \
testingIf using docker-machine, get the IP of the container with ``docker-machine ip ``.
A web service will be running at http://:5000.