mirror of
https://github.com/Haxxnet/Compose-Examples
synced 2025-02-25 09:28:44 +00:00
Compare commits
2 Commits
7fa5659ca0
...
671d3913f7
Author | SHA1 | Date | |
---|---|---|---|
|
671d3913f7 | ||
|
3119b07205 |
@ -154,6 +154,7 @@ 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.
|
||||
- [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.).
|
||||
- [Transfer.sh](examples/transfer.sh) - Easy and fast file sharing from the command-line.
|
||||
|
||||
### 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.
|
||||
|
9
examples/transfer.sh/README.md
Normal file
9
examples/transfer.sh/README.md
Normal file
@ -0,0 +1,9 @@
|
||||
# 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.
|
34
examples/transfer.sh/docker-compose.yml
Normal file
34
examples/transfer.sh/docker-compose.yml
Normal file
@ -0,0 +1,34 @@
|
||||
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
|
Loading…
x
Reference in New Issue
Block a user