diff --git a/docker/docker-compose.yaml b/docker/docker-compose.yaml index fdd1b771f3..aaf099453a 100644 --- a/docker/docker-compose.yaml +++ b/docker/docker-compose.yaml @@ -742,9 +742,7 @@ services: # API service api: - build: - context: ../api - dockerfile: Dockerfile + image: langgenius/dify-api:1.13.3 restart: always environment: # Use the shared environment variables. @@ -792,9 +790,7 @@ services: # worker service # The Celery worker for processing all queues (dataset, workflow, mail, etc.) worker: - build: - context: ../api - dockerfile: Dockerfile + image: langgenius/dify-api:1.13.3 restart: always environment: # Use the shared environment variables. @@ -840,9 +836,7 @@ services: # worker_beat service # Celery beat for scheduling periodic tasks. worker_beat: - build: - context: ../api - dockerfile: Dockerfile + image: langgenius/dify-api:1.13.3 restart: always environment: # Use the shared environment variables. @@ -879,9 +873,7 @@ services: # Frontend web application. web: - build: - context: .. - dockerfile: web/Dockerfile + image: langgenius/dify-web:1.13.3 restart: always environment: CONSOLE_API_URL: ${CONSOLE_API_URL:-} @@ -946,8 +938,6 @@ services: interval: 1s timeout: 3s retries: 60 - ports: - - "5432:5432" # The mysql database. db_mysql: