add docker-legacy and docker/nginx/conf.d/default.conf to .gitignore (#5707)

This commit is contained in:
Chenhe Gu 2024-06-28 19:47:24 +08:00 committed by GitHub
parent 017d2c804b
commit a2c260fba0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 15 additions and 3 deletions

12
.gitignore vendored
View File

@ -144,6 +144,16 @@ api/.idea
api/.env api/.env
api/storage/* api/storage/*
docker-legacy/volumes/app/storage/*
docker-legacy/volumes/db/data/*
docker-legacy/volumes/redis/data/*
docker-legacy/volumes/weaviate/*
docker-legacy/volumes/qdrant/*
docker-legacy/volumes/etcd/*
docker-legacy/volumes/minio/*
docker-legacy/volumes/milvus/*
docker-legacy/volumes/chroma/*
docker/volumes/app/storage/* docker/volumes/app/storage/*
docker/volumes/db/data/* docker/volumes/db/data/*
docker/volumes/redis/data/* docker/volumes/redis/data/*
@ -154,6 +164,8 @@ docker/volumes/minio/*
docker/volumes/milvus/* docker/volumes/milvus/*
docker/volumes/chroma/* docker/volumes/chroma/*
docker/nginx/conf.d/default.conf
sdks/python-client/build sdks/python-client/build
sdks/python-client/dist sdks/python-client/dist
sdks/python-client/dify_client.egg-info sdks/python-client/dify_client.egg-info

View File

@ -259,7 +259,7 @@ x-shared-env: &shared-api-worker-env
services: services:
# API service # API service
api: api:
image: langgenius/dify-api:0.6.10 image: langgenius/dify-api:0.6.11
restart: always restart: always
environment: environment:
# Use the shared environment variables. # Use the shared environment variables.
@ -282,7 +282,7 @@ services:
# worker service # worker service
# The Celery worker for processing the queue. # The Celery worker for processing the queue.
worker: worker:
image: langgenius/dify-api:0.6.10 image: langgenius/dify-api:0.6.11
restart: always restart: always
environment: environment:
# Use the shared environment variables. # Use the shared environment variables.
@ -301,7 +301,7 @@ services:
# Frontend web application. # Frontend web application.
web: web:
image: langgenius/dify-web:0.6.10 image: langgenius/dify-web:0.6.11
restart: always restart: always
environment: environment:
CONSOLE_API_URL: ${CONSOLE_API_URL:-} CONSOLE_API_URL: ${CONSOLE_API_URL:-}