Compare commits

..

No commits in common. "671d3913f79111d50dbfaf8e098771d1af17a424" and "7fa5659ca05b6124897b5a64d6c21cbb23807fd8" have entirely different histories.

3 changed files with 0 additions and 44 deletions

View File

@ -154,7 +154,6 @@ docker compose up
- [Droppy](examples/droppy) (deprecated) - droppy is a self-hosted file storage server with a web interface and capabilities to edit files and view media directly in the browser. It is particularly well-suited to be run on low-end hardware like the Raspberry Pi. - [Droppy](examples/droppy) (deprecated) - droppy is a self-hosted file storage server with a web interface and capabilities to edit files and view media directly in the browser. It is particularly well-suited to be run on low-end hardware like the Raspberry Pi.
- [PairDrop](examples/pairdrop) - PairDrop is a sublime alternative to AirDrop that works on all platforms. Send images, documents or text via peer to peer connection to devices in the same local network/Wi-Fi or to paired devices. - [PairDrop](examples/pairdrop) - PairDrop is a sublime alternative to AirDrop that works on all platforms. Send images, documents or text via peer to peer connection to devices in the same local network/Wi-Fi or to paired devices.
- [MinIO](examples/minio) - MinIO is an object storage server, compatible with Amazon S3 cloud storage service, mainly used for storing unstructured data (such as photos, videos, log files, etc.). - [MinIO](examples/minio) - MinIO is an object storage server, compatible with Amazon S3 cloud storage service, mainly used for storing unstructured data (such as photos, videos, log files, etc.).
- [Transfer.sh](examples/transfer.sh) - Easy and fast file sharing from the command-line.
### Publishing, Writing, Blogging, Hosting ### Publishing, Writing, Blogging, Hosting
- [Ghost](examples/ghost) - Ghost is a free and open source blogging platform written in JavaScript and distributed under the MIT License, designed to simplify the process of online publishing for individual bloggers as well as online publications. - [Ghost](examples/ghost) - Ghost is a free and open source blogging platform written in JavaScript and distributed under the MIT License, designed to simplify the process of online publishing for individual bloggers as well as online publications.

View File

@ -1,9 +0,0 @@
# References
- https://github.com/dutchcoders/transfer.sh
# Notes
Ensure that the bind mount volume can be written by the container.
The provided container image uses `5000` as PUID and PGID as default. If you want to change those, you have to build the container image locally. Read [here](https://github.com/dutchcoders/transfer.sh#building-the-container) for more details.

View File

@ -1,34 +0,0 @@
version: '3.3'
services:
transfer:
image: dutchcoders/transfer.sh:latest-noroot
container_name: transfer
hostname: transfer
restart: unless-stopped
ports:
- 8080:8080/tcp
expose:
- 8080
volumes:
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/transfer:/tmp
command:
- --provider=local
- --basedir=/tmp/
#networks:
# - dev # or use dev for testing purposes
#labels:
# - traefik.enable=true
# - traefik.http.routers.transfer.rule=Host(`transfer.example.com`)
# - traefik.http.services.transfer.loadbalancer.server.port=8080
# - traefik.http.middlewares.limit.buffering.maxRequestBodyBytes=50000000 # optional, only necessary for enabled file uploads
# - traefik.http.middlewares.limit.buffering.maxResponseBodyBytes=50000000 # optional, only necessary for enabled file uploads
# - traefik.http.middlewares.limit.buffering.memRequestBodyBytes=50000000 # optional, only necessary for enabled file uploads
# - traefik.http.middlewares.limit.buffering.memResponseBodyBytes=50000000 # optional, only necessary for enabled file uploads
# - traefik.docker.network=proxy
# # Part for optional traefik middlewares
# - traefik.http.routers.transfer.middlewares=local-ipwhitelist@file
#networks:
# dev: # or use dev for testing purposes
# external: true