Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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 \
testing

If using docker-machine, get the IP of the container with ``docker-machine ip ``.
A web service will be running at http://:5000.