mirror of
https://github.com/Haxxnet/Compose-Examples
synced 2025-02-25 09:28:44 +00:00
Compare commits
2 Commits
671d3913f7
...
ff160cb510
Author | SHA1 | Date | |
---|---|---|---|
|
ff160cb510 | ||
|
3bc3a4742d |
@ -155,6 +155,7 @@ docker compose up
|
||||
- [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.
|
||||
- [Transfer.zip](examples/transfer.zip) - Transfer files securely and E2E encrypted (AES-256 GCM) between browsers using WebRTC Peer2peer.
|
||||
|
||||
### 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.
|
||||
|
4
examples/transfer.zip/README.md
Normal file
4
examples/transfer.zip/README.md
Normal file
@ -0,0 +1,4 @@
|
||||
# References
|
||||
|
||||
- https://github.com/l4rm4nd/transfer.zip-web (fork with external DockerHub images)
|
||||
- https://github.com/robinkarlberg/transfer.zip-web (original, no DockerHub images, local builds required)
|
41
examples/transfer.zip/docker-compose.yml
Normal file
41
examples/transfer.zip/docker-compose.yml
Normal file
@ -0,0 +1,41 @@
|
||||
version: '3.3'
|
||||
|
||||
services:
|
||||
web-server:
|
||||
#build: web-server
|
||||
image: l4rm4nd/transferzip:web-server
|
||||
hostname: web-server
|
||||
container_name: transferzip-web
|
||||
restart: unless-stopped
|
||||
expose:
|
||||
- 80
|
||||
depends_on:
|
||||
- signaling-server
|
||||
ports:
|
||||
- 9001:80
|
||||
#networks:
|
||||
# - proxy
|
||||
#labels:
|
||||
# - traefik.enable=true
|
||||
# - traefik.http.routers.transferzip.rule=Host(`transfer.example.com`)
|
||||
# - traefik.http.services.transferzip.loadbalancer.server.port=80
|
||||
# - 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.transferzip.middlewares=local-ipwhitelist@file,authelia@file,basic-auth@file
|
||||
|
||||
signaling-server:
|
||||
#build: signaling-server
|
||||
image: l4rm4nd/transferzip:signaling-server
|
||||
hostname: signaling-server
|
||||
container_name: transferzip-signaling
|
||||
restart: unless-stopped
|
||||
#networks:
|
||||
# - proxy
|
||||
|
||||
#networks:
|
||||
# proxy:
|
||||
# external: true
|
Loading…
x
Reference in New Issue
Block a user