Add send service

This commit is contained in:
whitney 2025-02-11 11:32:20 -08:00
parent 91017212b2
commit 21008c0f70
2 changed files with 28 additions and 0 deletions

4
send/README.md Normal file
View File

@ -0,0 +1,4 @@
# Send
Temporary self-host of files.
Note: We are using a community driven [fork](https://github.com/timvisee/send) of the original Mozilla repo, which has itself not been changed in a bit. Hope that means we are feature-complete.

24
send/docker-compose.yml Normal file
View File

@ -0,0 +1,24 @@
networks:
traefik:
external: true
services:
send:
image: registry.gitlab.com/timvisee/send:latest
container_name: send
networks:
- traefik
volumes:
- send-data:/data
restart: unless-stopped
environment:
- BASE_URL=https://send.whitney.rip
labels:
- traefik.http.routers.send.rule=Host(`send.whitney.rip`)
- traefik.http.routers.send.tls=true
- traefik.http.routers.send.tls.certresolver=lets-encrypt
- traefik.http.services.send.loadbalancer.server.port=1443
volumes:
send-data: