Skip to content

Commit

Permalink
update docker compose images verison
Browse files Browse the repository at this point in the history
  • Loading branch information
takatost committed Mar 23, 2024
1 parent fac9459 commit d7b2fe1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
with:
images: ${{ env[matrix.image_name_env] }}
tags: |
type=raw,value=latest,enable=${{ startsWith(github.ref, 'refs/tags/') }}
type=raw,value=latest,enable=${{ github.ref == 'refs/heads/main' && startsWith(github.ref, 'refs/tags/') }}
type=ref,event=branch
type=sha,enable=true,priority=100,prefix=,suffix=,format=long
type=raw,value=${{ github.ref_name }},enable=${{ startsWith(github.ref, 'refs/tags/') }}
Expand Down
6 changes: 3 additions & 3 deletions docker/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3'
services:
# API service
api:
image: langgenius/dify-api:0.5.10
image: langgenius/dify-api:0.6.0-preview-workflow.1
restart: always
environment:
# Startup mode, 'api' starts the API server.
Expand Down Expand Up @@ -143,7 +143,7 @@ services:
# worker service
# The Celery worker for processing the queue.
worker:
image: langgenius/dify-api:0.5.10
image: langgenius/dify-api:0.6.0-preview-workflow.1
restart: always
environment:
# Startup mode, 'worker' starts the Celery worker for processing the queue.
Expand Down Expand Up @@ -225,7 +225,7 @@ services:

# Frontend web application.
web:
image: langgenius/dify-web:0.5.10
image: langgenius/dify-web:0.6.0-preview-workflow.1
restart: always
environment:
EDITION: SELF_HOSTED
Expand Down

0 comments on commit d7b2fe1

Please sign in to comment.