Skip to content

Commit

Permalink
build: update docker-compose.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jameszyao authored and SimsonW committed Feb 6, 2024
1 parent c571217 commit 0b65a8c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion backend/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def __init__(self):
logger.info(f"Init Config")

# version
self.VERSION = "0.1.2"
self.VERSION = "0.1.3"
self.POSTGRES_SCHEMA_VERSION = 3

# mode
Expand Down
2 changes: 1 addition & 1 deletion backend/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Fastapi==0.101.1
Fastapi==0.109.1
uvicorn==0.23.2
aiohttp==3.9.2
PyJWT==2.8.0
Expand Down
6 changes: 3 additions & 3 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.1.2
image: taskingai/taskingai-console:v0.1.3
depends_on:
- backend-web
- backend-api
Expand All @@ -14,7 +14,7 @@ services:
AES_ENCRYPTION_KEY: b90e4648ad699c3bdf62c0860e09eb9efc098ee75f215bf750847ae19d41e4b0

backend-api:
image: taskingai/taskingai-server:v0.1.2
image: taskingai/taskingai-server:v0.1.3
environment:
POSTGRES_URL: postgres://postgres:TaskingAI321@db:5432/taskingai
REDIS_URL: redis://:TaskingAI321@cache:6379/0
Expand All @@ -28,7 +28,7 @@ services:
- backend-inference

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

0 comments on commit 0b65a8c

Please sign in to comment.