added tunnel

This commit is contained in:
Joe Crypto 2023-06-23 01:18:34 +00:00
parent c5b61e65b9
commit c4bafe455a
3 changed files with 29 additions and 34 deletions

View File

@ -1,23 +1,23 @@
FROM nvidia/cuda:11.8.0-devel-ubuntu22.04
WORKDIR /app
RUN apt-get update && apt-get install -y \
git \
python3 \
pip
WORKDIR /app
COPY . /app
# upgrade pip
RUN pip3 install --upgrade pip
COPY ./requirements.txt /app/requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
RUN python3 -m spacy download zh_core_web_sm
EXPOSE 7860
CMD ["python3", "pilot/server/webserver.py"]
COPY . /app
EXPOSE 7860
EXPOSE 8000

View File

@ -1,21 +0,0 @@
FROM nvidia/cuda:11.8.0-devel-ubuntu22.04
RUN apt-get update && apt-get install -y \
git \
python3 \
pip
WORKDIR /app
COPY . /app
# upgrade pip
RUN pip3 install --upgrade pip
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 8000
CMD ["python3", "pilot/server/llmserver.py"]

View File

@ -16,11 +16,16 @@ services:
webserver:
build:
context: .
dockerfile: Dockerfile-webserver
dockerfile: Dockerfile
command: python3 pilot/server/webserver.py
environment:
- MODEL_SERVER=http://llmserver:8000
- LOCAL_DB_HOST=db
- WEB_SERVER_PORT=7860
- ALLOWLISTED_PLUGINS=db_dashboard
depends_on:
- db
- llmserver
volumes:
- ./models:/app/models
- ./plugins:/app/plugins
@ -28,16 +33,19 @@ services:
env_file:
- .env.template
ports:
- 7860:7860
- 7860:7860/tcp
expose:
- 7860
- 7860/tcp
restart: unless-stopped
llmserver:
build:
context: .
dockerfile: Dockerfile-llmserver
dockerfile: Dockerfile
command: python3 pilot/server/llmserver.py
environment:
- LOCAL_DB_HOST=db
depends_on:
- db
volumes:
- ./models:/app/models
env_file:
@ -52,7 +60,15 @@ services:
- driver: nvidia
device_ids: ['0']
capabilities: [gpu]
tunnel:
image: cloudflare/cloudflared:latest
container_name: cloudflared-tunnel
restart: unless-stopped
environment:
- TUNNEL_URL=http://webserver:7860
command: tunnel --no-autoupdate
depends_on:
- webserver
volumes: