chore: update format
This commit is contained in:
@@ -49,11 +49,11 @@ services:
|
||||
deploy:
|
||||
resources:
|
||||
limits:
|
||||
cpus: "1.0"
|
||||
memory: 1G
|
||||
cpus: ${PLAYWRIGHT_CPU_LIMIT:-1.0}
|
||||
memory: ${PLAYWRIGHT_MEMORY_LIMIT:-1G}
|
||||
reservations:
|
||||
cpus: "0.5"
|
||||
memory: 512M
|
||||
cpus: ${PLAYWRIGHT_CPU_RESERVATION:-0.5}
|
||||
memory: ${PLAYWRIGHT_MEMORY_RESERVATION:-512M}
|
||||
|
||||
api:
|
||||
<<: *defaults
|
||||
@@ -78,11 +78,11 @@ services:
|
||||
deploy:
|
||||
resources:
|
||||
limits:
|
||||
cpus: "2.0"
|
||||
memory: 4G
|
||||
cpus: ${FIRECRAWL_API_CPU_LIMIT:-2.0}
|
||||
memory: ${FIRECRAWL_API_MEMORY_LIMIT:-4G}
|
||||
reservations:
|
||||
cpus: "1.0"
|
||||
memory: 2G
|
||||
cpus: ${FIRECRAWL_API_CPU_RESERVATION:-1.0}
|
||||
memory: ${FIRECRAWL_API_MEMORY_RESERVATION:-2G}
|
||||
healthcheck:
|
||||
test:
|
||||
[
|
||||
@@ -107,11 +107,11 @@ services:
|
||||
deploy:
|
||||
resources:
|
||||
limits:
|
||||
cpus: "0.5"
|
||||
memory: 512M
|
||||
cpus: ${REDIS_CPU_LIMIT:-0.5}
|
||||
memory: ${REDIS_MEMORY_LIMIT:-512M}
|
||||
reservations:
|
||||
cpus: "0.25"
|
||||
memory: 256M
|
||||
cpus: ${REDIS_CPU_RESERVATION:-0.25}
|
||||
memory: ${REDIS_MEMORY_RESERVATION:-256M}
|
||||
healthcheck:
|
||||
test: ["CMD", "redis-cli", "ping"]
|
||||
interval: 10s
|
||||
@@ -133,11 +133,11 @@ services:
|
||||
deploy:
|
||||
resources:
|
||||
limits:
|
||||
cpus: "1.0"
|
||||
memory: 1G
|
||||
cpus: ${NUQPOSTGRES_CPU_LIMIT:-1.0}
|
||||
memory: ${NUQPOSTGRES_MEMORY_LIMIT:-1G}
|
||||
reservations:
|
||||
cpus: "0.5"
|
||||
memory: 512M
|
||||
cpus: ${NUQPOSTGRES_CPU_RESERVATION:-0.5}
|
||||
memory: ${NUQPOSTGRES_MEMORY_RESERVATION:-512M}
|
||||
healthcheck:
|
||||
test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER:-postgres}"]
|
||||
interval: 10s
|
||||
|
||||
Reference in New Issue
Block a user