Skip to content

Commit

Permalink
build: update docker compose to v0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jameszyao authored and SimsonW committed Apr 12, 2024
1 parent a719378 commit 3ceefec
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
run: docker run --network taskingai-network -d --rm -e MODE=TEST --name inference taskingai/taskingai-inference:v0.2.8

- name: Run Docker image - Plugin
run: docker run --network taskingai-network -d --rm -e MODE=TEST --name plugin taskingai/taskingai-plugin:v0.2.5
run: docker run --network taskingai-network -d --rm -e MODE=TEST --name plugin taskingai/taskingai-plugin:v0.2.6

- name: Build Docker image
working-directory: backend
Expand Down
2 changes: 1 addition & 1 deletion backend/app/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__VERSION__ = "v0.2.1"
__VERSION__ = "v0.2.2"
8 changes: 4 additions & 4 deletions docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3.3"

services:
frontend:
image: taskingai/taskingai-console:v0.2.1
image: taskingai/taskingai-console:v0.2.2
depends_on:
- backend-web
- backend-api
Expand All @@ -14,13 +14,13 @@ services:
ICON_URL_PREFIX: http://localhost:8080 # replace with your own

backend-plugin:
image: taskingai/taskingai-plugin:v0.2.1
image: taskingai/taskingai-plugin:v0.2.6
environment:
AES_ENCRYPTION_KEY: b90e4648ad699c3bdf62c0860e09eb9efc098ee75f215bf750847ae19d41e4b0 # replace with your own
ICON_URL_PREFIX: http://localhost:8080 # replace with your own

backend-api:
image: taskingai/taskingai-server:v0.2.1
image: taskingai/taskingai-server:v0.2.2
environment:
POSTGRES_URL: postgres://postgres:TaskingAI321@db:5432/taskingai
REDIS_URL: redis://:TaskingAI321@cache:6379/0
Expand All @@ -34,7 +34,7 @@ services:
- backend-plugin

backend-web:
image: taskingai/taskingai-server:v0.2.1
image: taskingai/taskingai-server:v0.2.2
environment:
POSTGRES_URL: postgres://postgres:TaskingAI321@db:5432/taskingai
REDIS_URL: redis://:TaskingAI321@cache:6379/0
Expand Down

0 comments on commit 3ceefec

Please sign in to comment.