Skip to content

Commit

Permalink
fix: Fix TAG in docker-compose files
Browse files Browse the repository at this point in the history
Signed-off-by: Diwank Singh Tomer <[email protected]>
  • Loading branch information
creatorrr committed Oct 13, 2024
1 parent 8e25bee commit 799a9dd
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 14 deletions.
5 changes: 5 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Image Tags
# ----------

TAG=dev

# Security
# --------

Expand Down
6 changes: 3 additions & 3 deletions agents-api/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ x--shared-environment: &shared-environment
WORKER_URL: ${WORKER_URL:-temporal:7233}

x--base-agents-api: &base-agents-api
image: julepai/agents-api:${TAG}
image: julepai/agents-api:${TAG:-dev}
depends_on:
worker:
condition: service_started
Expand Down Expand Up @@ -67,7 +67,7 @@ services:
AGENTS_API_PREFIX: "/api"

worker:
image: julepai/worker:${TAG}
image: julepai/worker:${TAG:-dev}
environment:
<<: *shared-environment
build:
Expand All @@ -87,7 +87,7 @@ services:
path: Dockerfile.worker

cozo-migrate:
image: julepai/cozo-migrate:${TAG}
image: julepai/cozo-migrate:${TAG:-dev}
container_name: cozo-migrate
build:
context: .
Expand Down
2 changes: 1 addition & 1 deletion blob-store/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: julep-blob-store

services:
seaweedfs:
image: julepai/blob-store:${TAG}
image: julepai/blob-store:${TAG:-dev}
build:
context: .
dockerfile: Dockerfile
Expand Down
17 changes: 9 additions & 8 deletions deploy/simple-docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ services:
TEMPORAL_WORKER_URL: temporal:7233
TRUNCATE_EMBED_TEXT: "True"
WORKER_URL: temporal:7233
image: julepai/agents-api:${TAG:-1.0}
image: julepai/agents-api:${TAG:-dev}
networks:
default: null
ports:
Expand Down Expand Up @@ -56,12 +56,13 @@ services:
TEMPORAL_WORKER_URL: temporal:7233
TRUNCATE_EMBED_TEXT: "True"
WORKER_URL: temporal:7233
image: julepai/cozo-migrate:${TAG:-1.0}
image: julepai/cozo-migrate:${TAG:-dev}
networks:
default: null
restart: "no"

integrations:
image: julepai/integrations:${TAG:-dev}
environment:
OPENAI_API_KEY: ${OPENAI_API_KEY}
networks:
Expand Down Expand Up @@ -109,12 +110,12 @@ services:
restart: unless-stopped
volumes:
- type: bind
source: ./llm-proxy/litellm-config.yaml
source: ../llm-proxy/litellm-config.yaml
target: /app/config.yaml
bind:
create_host_path: true
- type: bind
source: ./llm-proxy/.keys
source: ../llm-proxy/.keys
target: /app/.keys
read_only: true
bind:
Expand Down Expand Up @@ -161,7 +162,7 @@ services:
COZO_BACKUP_DIR: /backup
COZO_MNT_DIR: /data
COZO_PORT: "9070"
image: julepai/memory-store:${TAG:-1.0}
image: julepai/memory-store:${TAG:-dev}
labels:
ofelia.enabled: "true"
ofelia.job-exec.backupcron.command: bash /app/backup.sh
Expand Down Expand Up @@ -236,12 +237,12 @@ services:
default: null
volumes:
- type: bind
source: ./scheduler/dynamicconfig
source: ../scheduler/dynamicconfig
target: /etc/temporal/config/dynamicconfig
bind:
create_host_path: true
- type: bind
source: ./scheduler/cert
source: ../scheduler/cert
target: /cert
bind:
create_host_path: true
Expand Down Expand Up @@ -307,7 +308,7 @@ services:
TEMPORAL_WORKER_URL: temporal:7233
TRUNCATE_EMBED_TEXT: "True"
WORKER_URL: temporal:7233
image: julepai/worker:${TAG:-1.0}
image: julepai/worker:${TAG:-dev}
networks:
default: null

Expand Down
2 changes: 1 addition & 1 deletion gateway/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: julep-gateway

services:
gateway:
image: julepai/gateway:${TAG}
image: julepai/gateway:${TAG:-dev}
environment:
- GATEWAY_PORT=80
- JWT_SHARED_KEY=${JWT_SHARED_KEY}
Expand Down
1 change: 1 addition & 0 deletions integrations-service/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ x--shared-environment: &shared-environment

services:
integrations:
image: julepai/integrations:${TAG:-dev}
environment:
<<: *shared-environment

Expand Down
2 changes: 1 addition & 1 deletion memory-store/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: julep-memory-store

services:
memory-store:
image: julepai/memory-store:${TAG}
image: julepai/memory-store:${TAG:-dev}
environment:
- COZO_AUTH_TOKEN=${COZO_AUTH_TOKEN}
- COZO_PORT=${COZO_PORT:-9070}
Expand Down

0 comments on commit 799a9dd

Please sign in to comment.