mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-16 16:30:15 +01:00
wip: testing leaner docker strategy and deployment compose file (#719)
* nginx setup * chore(dev-images.yml): update workflow trigger to push events on main branch chore(dev-images.yml): remove building and pushing of librechat-dev-client image chore(nginx.conf): comment out SSL configuration in nginx.conf chore(deploy-compose.yml): uncomment api build configuration in deploy-compose.yml chore(deploy-compose.yml): update client build configuration in deploy-compose.yml
This commit is contained in:
parent
dae2805d27
commit
1f8520cdad
4 changed files with 18 additions and 11 deletions
|
|
@ -1,6 +1,10 @@
|
|||
version: "3.8"
|
||||
services:
|
||||
api:
|
||||
# build:
|
||||
# context: .
|
||||
# dockerfile: Dockerfile.multi
|
||||
# target: api-build
|
||||
image: ghcr.io/danny-avila/librechat-dev-api:latest
|
||||
container_name: LibreChat-API
|
||||
ports:
|
||||
|
|
@ -19,7 +23,11 @@ services:
|
|||
- MEILI_HOST=http://meilisearch:7700
|
||||
- MEILI_HTTP_ADDR=meilisearch:7700
|
||||
client:
|
||||
image: ghcr.io/danny-avila/librechat-dev-client:latest
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile.multi
|
||||
target: prod-stage
|
||||
container_name: LibreChat-NGINX
|
||||
ports:
|
||||
- 80:80
|
||||
- 443:443
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue