修复 curve 接口的一些问题
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
services:
|
||||
app:
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile
|
||||
container_name: app-api
|
||||
restart: always
|
||||
ports:
|
||||
- "8084:8080"
|
||||
environment:
|
||||
- APP_ENV=production
|
||||
- APP_HOST=0.0.0.0
|
||||
- APP_PORT=8080
|
||||
- DATABASE_PASSWORD=${DATABASE_PASSWORD}
|
||||
- REDIS_PASSWORD=${REDIS_PASSWORD:-eafon123!}
|
||||
- MEILISEARCH_API_KEY=${MEILISEARCH_API_KEY:-young9#!UJsD219921031}
|
||||
- ENABLE_PERSIST_TASK=false
|
||||
- MEASUREMENT_BASE_PATH=/app/measurements
|
||||
- TARGET_BASE_PATH=/app/targets
|
||||
volumes:
|
||||
- /data/project/autoeq/measurements:/app/measurements:ro
|
||||
- /data/project/autoeq/targets:/app/targets:ro
|
||||
healthcheck:
|
||||
test: ["CMD", "wget", "-q", "-O", "/dev/null", "http://localhost:8080/api/v1/health"]
|
||||
interval: 30s
|
||||
timeout: 5s
|
||||
retries: 3
|
||||
start_period: 10s
|
||||
logging:
|
||||
driver: json-file
|
||||
options:
|
||||
max-size: "10m"
|
||||
max-file: "3"
|
||||
Reference in New Issue
Block a user