mirror of
https://github.com/runyanjake/olomana.git
synced 2025-10-04 21:27:29 -07:00
Add send service
This commit is contained in:
parent
91017212b2
commit
21008c0f70
4
send/README.md
Normal file
4
send/README.md
Normal 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
24
send/docker-compose.yml
Normal 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:
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user