feat: all cpus reservations to 0.1
This commit is contained in:
@@ -11,11 +11,11 @@ TZ=UTC
|
||||
FLOWISE_PORT_OVERRIDE=3000
|
||||
|
||||
# Resource Limits
|
||||
FLOWISE_CPU_LIMIT=1
|
||||
FLOWISE_CPU_LIMIT=1.0
|
||||
FLOWISE_MEMORY_LIMIT=1024M
|
||||
FLOWISE_CPU_RESERVATION=0.5
|
||||
FLOWISE_CPU_RESERVATION=0.1
|
||||
FLOWISE_MEMORY_RESERVATION=512M
|
||||
|
||||
# Optional basic auth (leave empty to disable)
|
||||
# FLOWISE_USERNAME=
|
||||
# FLOWISE_PASSWORD=
|
||||
# FLOWISE_PASSWORD=
|
||||
@@ -33,10 +33,10 @@ services:
|
||||
deploy:
|
||||
resources:
|
||||
limits:
|
||||
cpus: ${FLOWISE_CPU_LIMIT:-1}
|
||||
cpus: ${FLOWISE_CPU_LIMIT:-1.0}
|
||||
memory: ${FLOWISE_MEMORY_LIMIT:-1024M}
|
||||
reservations:
|
||||
cpus: ${FLOWISE_CPU_RESERVATION:-0.5}
|
||||
cpus: ${FLOWISE_CPU_RESERVATION:-0.1}
|
||||
memory: ${FLOWISE_MEMORY_RESERVATION:-512M}
|
||||
|
||||
volumes:
|
||||
|
||||
Reference in New Issue
Block a user