From 8848b8a569354fbb30d67702a1e7846c51370fc1 Mon Sep 17 00:00:00 2001 From: Danny Avila <110412045+danny-avila@users.noreply.github.com> Date: Thu, 4 Jan 2024 22:14:53 -0500 Subject: [PATCH] refactor: Mount Config File in Docker and Add to .dockerignore (#1493) --- .dockerignore | 3 ++- docker-compose.yml | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.dockerignore b/.dockerignore index 0f03be588..30910059c 100644 --- a/.dockerignore +++ b/.dockerignore @@ -2,4 +2,5 @@ client/dist/images data-node .env -**/.env \ No newline at end of file +**/.env +librechat.yaml \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml index 1c5c9f951..873eb5c5f 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -32,6 +32,7 @@ services: - ./.env.development:/app/.env.development - ./.env.production:/app/.env.production - ./images:/app/client/public/images + - ./librechat.yaml:/app/librechat.yaml mongodb: container_name: chat-mongodb image: mongo