From d68dd7127ff016bd9f77fdf687e0b30a7f25b7c5 Mon Sep 17 00:00:00 2001 From: Cyberes Date: Sun, 15 Oct 2023 16:05:14 -0600 Subject: [PATCH] docker: revert --- other/vllm/Docker/Dockerfile.base | 2 +- other/vllm/Docker/supervisord.conf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/other/vllm/Docker/Dockerfile.base b/other/vllm/Docker/Dockerfile.base index 96cff0a..399a4b3 100644 --- a/other/vllm/Docker/Dockerfile.base +++ b/other/vllm/Docker/Dockerfile.base @@ -12,7 +12,7 @@ RUN pip3 install --upgrade pip setuptools wheel RUN git clone https://git.evulid.cc/cyberes/local-llm-server.git /local-llm-server RUN python3 -m venv /jupyterlab -RUN /jupyterlab/bin/pip install jupyterlab notebook +RUN /jupyterlab/bin/pip install jupyterlab RUN /jupyterlab/bin/jupyter labextension disable "@jupyterlab/apputils-extension:announcements" RUN mkdir -p /app diff --git a/other/vllm/Docker/supervisord.conf b/other/vllm/Docker/supervisord.conf index 1b70082..03ffc40 100644 --- a/other/vllm/Docker/supervisord.conf +++ b/other/vllm/Docker/supervisord.conf @@ -30,7 +30,7 @@ user=apiserver environment=HOME="/home/apiserver",USER="apiserver" [program:jupyter] -command=/jupyterlab/bin/jupyter notebook --allow-root --ip=0.0.0.0 --no-browser --NotebookApp.trust_xheaders=True --NotebookApp.disable_check_xsrf=False --NotebookApp.allow_remote_access=True --NotebookApp.allow_origin='*' --notebook-dir /notebooks +command=/jupyterlab/bin/jupyter lab --allow-root --ip=0.0.0.0 --no-browser --ServerApp.trust_xheaders=True --ServerApp.disable_check_xsrf=False --ServerApp.allow_remote_access=True --ServerApp.allow_origin='*' --ServerApp.allow_credentials=True --notebook-dir /notebooks environment=SHELL="/bin/bash" autostart=true autorestart=true