Move send to stack

This commit is contained in:
Joey Hafner 2024-08-28 12:14:19 -07:00
parent 23cc8dd9a9
commit f3686ae3ad
No known key found for this signature in database
3 changed files with 10 additions and 12 deletions

View File

@ -1,9 +0,0 @@
VIRTUAL_HOST=0.0.0.0
VIRTUAL_PORT=1234
DHPARAM_GENERATION=false
NODE_ENV=production
BASE_URL=https://send.jafner.net
PORT=1234
REDIS_HOST=redis
FILE_DIR=/uploads
MAX_FILE_SIZE=42949672960

View File

@ -7,9 +7,16 @@ services:
networks:
- send
- web
env_file:
- path: ./send.env
required: true
environment:
VIRTUAL_HOST: 0.0.0.0
VIRTUAL_PORT: 1234
DHPARAM_GENERATION: false
NODE_ENV: production
BASE_URL: https://send.jafner.net
PORT: 1234
REDIS_HOST: redis
FILE_DIR: /uploads
MAX_FILE_SIZE: 42949672960 # 40 GiB
volumes:
- ${DOCKER_DATA}/uploads:/uploads
labels: