change collector port from 8000 to 4000

This commit is contained in:
seekr
2026-08-07 10:00:02 +00:00
parent 11c1a29b60
commit b927f0128c
2 changed files with 2 additions and 2 deletions

View File

@@ -19,7 +19,7 @@ services:
build: ./monitor/collector
container_name: rclonemon-collector
ports:
- "8000:8000"
- "4000:4000"
environment:
- MONGO_URL=mongodb://mongo:27017
- AGENT_TOKEN=${AGENT_TOKEN}

View File

@@ -25,4 +25,4 @@ user = ${REAL_SYNOLOGY_USER}
pass = $(rclone obscure "${REAL_SYNOLOGY_PASS}")
EOF
fi
exec uvicorn main:app --host 0.0.0.0 --port 8000
exec uvicorn main:app --host 0.0.0.0 --port 4000