Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/matdombrock/send-me-something
- Owner: matdombrock
- Created: 2022-02-14T05:45:18.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-08-03T10:32:09.000Z (over 2 years ago)
- Last Synced: 2024-11-07T04:44:33.969Z (about 2 months ago)
- Language: JavaScript
- Homepage:
- Size: 2.64 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```