chore: muta portul implicit 8000 -> 8010 (evita coliziunea cu roa2web)

start.sh, docker-compose.yml, README.md, CLAUDE.md aliniate la 8010
pentru a nu se suprapune cu backend-ul roa2web pe masina de test.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
Claude Agent
2026-06-19 09:11:37 +00:00
parent d7ba1195d4
commit c8a19e2f06
4 changed files with 29 additions and 29 deletions

View File

@@ -8,9 +8,9 @@
services:
api:
build: .
command: uvicorn app.main:app --host 0.0.0.0 --port 8000
command: uvicorn app.main:app --host 0.0.0.0 --port 8010
ports:
- "8000:8000"
- "8010:8010"
volumes:
- autopass-data:/data
environment:
@@ -20,7 +20,7 @@ services:
AUTOPASS_REQUIRE_API_KEY: ${AUTOPASS_REQUIRE_API_KEY:-false}
restart: always
healthcheck:
test: ["CMD", "python", "-c", "import urllib.request,sys; sys.exit(0 if urllib.request.urlopen('http://localhost:8000/healthz').status==200 else 1)"]
test: ["CMD", "python", "-c", "import urllib.request,sys; sys.exit(0 if urllib.request.urlopen('http://localhost:8010/healthz').status==200 else 1)"]
interval: 30s
timeout: 5s
retries: 3