Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/matdombrock/send-me-something

A self-hosted file sharing web app.
https://github.com/matdombrock/send-me-something

Last synced: 7 days ago
JSON representation

A self-hosted file sharing web app.

Awesome Lists containing this project

README

        

# SEND ME SOMETHING
Send Me Something is a self-hosted file sharing app. Something like a hybrid between Dropbox and Syncthing.

## Running on Host Machine
```
git clone https://github.com/matdombrock/send-me-something.git
cd send-me-something/app
npm install
node app
```

## Running with Docker

[https://hub.docker.com/repository/docker/matdombrock/send-me-something](https://hub.docker.com/repository/docker/matdombrock/send-me-something)

Replace `` with the location you want to store your files and config. This path must exist.

```bash
docker run --mount type=bind,source=C:/,target=/var/sendme -p 1337:8080 -it --name sendme matdombrock/send-me-something
```

For example:
```bash
docker run --mount type=bind,source=C:/Users/dombr/sendmeVol,target=/var/sendme -p 1337:8080 -it --name sendme matdombrock/send-me-something
```