refactor(api): move containers endpoints and stats poller into app_containers router

This commit is contained in:
kodi
2026-02-27 16:01:15 +01:00
parent efd4fe46d7
commit 278d31b68c
3 changed files with 426 additions and 381 deletions
+4
View File
@@ -4,4 +4,8 @@ RUN apt-get update && apt-get install -y curl systemd && rm -rf /var/lib/apt/lis
RUN pip install fastapi uvicorn requests-unixsocket pyyaml pytest httpx
COPY app.py .
COPY app_images.py .
COPY app_files.py .
COPY app_networks.py .
COPY app_pods.py .
COPY app_containers.py .
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8000"]