Skip to content

Commit

Permalink
fix: Random fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Diwank Tomer <[email protected]>
  • Loading branch information
Diwank Tomer committed Aug 27, 2024
1 parent c0c9739 commit 20c216e
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 18 deletions.
2 changes: 1 addition & 1 deletion agents-api/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.10-slim
FROM python:3.11-slim

ENV PYTHONUNBUFFERED True
ENV POETRY_CACHE_DIR=/tmp/poetry_cache
Expand Down
2 changes: 1 addition & 1 deletion agents-api/Dockerfile.worker
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.10-slim
FROM python:3.11-slim

ENV PYTHONUNBUFFERED True
ENV POETRY_CACHE_DIR=/tmp/poetry_cache
Expand Down
7 changes: 3 additions & 4 deletions agents-api/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
name: julep-agents-api
version: "3"

services:
agents-api:
image: julepai/agents-api:dev
image: julepai/agents-api:${TAG:-dev}
env_file:
- ../.env
container_name: agents-api
Expand Down Expand Up @@ -31,7 +30,7 @@ services:
path: Dockerfile

worker:
image: julepai/worker:dev
image: julepai/worker:${TAG:-dev}
env_file:
- ../.env

Expand Down Expand Up @@ -78,7 +77,7 @@ services:


cozo-migrate:
image: julepai/cozo-migrate:dev
image: julepai/cozo-migrate:${TAG:-dev}
env_file:
- ../.env

Expand Down
10 changes: 5 additions & 5 deletions deploy/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: julep-api

services:
memory-store:
image: julepai/memory-store:dev
image: julepai/memory-store:${TAG:-dev}
platform: linux/x86_64
environment:
- COZO_AUTH_TOKEN=${COZO_AUTH_TOKEN}
Expand All @@ -17,7 +17,7 @@ services:
- "9070:9070"

agents-api:
image: julepai/agents-api:dev
image: julepai/agents-api:${TAG:-dev}
platform: linux/x86_64
container_name: julep-agents-api
depends_on:
Expand All @@ -31,7 +31,7 @@ services:
- .env

worker:
image: julepai/worker:dev
image: julepai/worker:${TAG:-dev}
platform: linux/x86_64
container_name: julep-worker
depends_on:
Expand Down Expand Up @@ -74,7 +74,7 @@ services:
- .env

temporal:
image: julepai/temporal:dev
image: julepai/temporal:${TAG:-dev}
platform: linux/x86_64
container_name: julep-temporal
ports:
Expand All @@ -93,7 +93,7 @@ services:
- COZO_HOST=http://memory-store:9070
env_file:
- .env
image: julepai/cozo-migrate:dev
image: julepai/cozo-migrate:${TAG:-dev}
platform: linux/x86_64
container_name: julep-cozo-migrate
depends_on:
Expand Down
1 change: 0 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
name: julep
version: "3"

include:
- ./memory-store/docker-compose.yml
Expand Down
3 changes: 1 addition & 2 deletions gateway/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
name: julep-gateway
version: "3"

services:
gateway:
image: julepai/gateway:dev
image: julepai/gateway:${TAG:-dev}
env_file: "../.env"
environment:
- GATEWAY_PORT=80
Expand Down
2 changes: 2 additions & 0 deletions llm-proxy/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
name: julep-llm-proxy

services:
litellm:
image: ghcr.io/berriai/litellm:main-stable
Expand Down
3 changes: 1 addition & 2 deletions memory-store/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
name: julep-memory-store
version: "3"

services:
memory-store:
image: julepai/memory-store:dev
image: julepai/memory-store:${TAG:-dev}
env_file: "../.env"
environment:
- COZO_AUTH_TOKEN=${COZO_AUTH_TOKEN}
Expand Down
1 change: 0 additions & 1 deletion monitoring/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
name: julep-monitoring
version: "3"

services:
portainer:
Expand Down
1 change: 0 additions & 1 deletion scheduler/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
name: julep-scheduler
version: "3"

services:
temporal:
Expand Down

0 comments on commit 20c216e

Please sign in to comment.