chore: Send app improvements (#479)
* Send app improvements - DETECT_BASE_URL env removed - FILE_DIR env added - redis healthcheck interval increased from 1s to 5s * Update Tipi Version --------- Co-authored-by: DrMxrcy <drmxrcy@gmail.com>
This commit is contained in:
parent
94c3f99ba0
commit
f9eef54574
|
@ -5,7 +5,7 @@
|
||||||
"exposable": true,
|
"exposable": true,
|
||||||
"port": 8126,
|
"port": 8126,
|
||||||
"id": "send",
|
"id": "send",
|
||||||
"tipi_version": 1,
|
"tipi_version": 2,
|
||||||
"version": "latest",
|
"version": "latest",
|
||||||
"categories": ["utilities"],
|
"categories": ["utilities"],
|
||||||
"description": "A file sharing experiment which allows you to send encrypted files to other users.",
|
"description": "A file sharing experiment which allows you to send encrypted files to other users.",
|
||||||
|
|
|
@ -20,7 +20,8 @@ services:
|
||||||
- REDIS_HOST=send-redis
|
- REDIS_HOST=send-redis
|
||||||
# Storage Limit
|
# Storage Limit
|
||||||
- MAX_FILE_SIZE=2147483648
|
- MAX_FILE_SIZE=2147483648
|
||||||
- DETECT_BASE_URL=true
|
# Storage path
|
||||||
|
- FILE_DIR=/uploads
|
||||||
depends_on:
|
depends_on:
|
||||||
- send-redis
|
- send-redis
|
||||||
labels:
|
labels:
|
||||||
|
@ -39,7 +40,7 @@ services:
|
||||||
- ${APP_DATA_DIR}/data/redis:/data
|
- ${APP_DATA_DIR}/data/redis:/data
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "redis-cli", "ping"]
|
test: ["CMD", "redis-cli", "ping"]
|
||||||
interval: 1s
|
interval: 5s
|
||||||
timeout: 3s
|
timeout: 3s
|
||||||
retries: 30
|
retries: 30
|
||||||
networks:
|
networks:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user