Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Disable model-serving by default #207

Merged
merged 8 commits into from
Apr 17, 2024
9 changes: 5 additions & 4 deletions .github/workflows/push-to-hub.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
name: Build and push images to docker hub on merge to dev
run-name: ${{ github.actor }} is building and pushing images to docker hub

on:
push:
branches:
- "dev"
on: [push]
creatorrr marked this conversation as resolved.
Show resolved Hide resolved
creatorrr marked this conversation as resolved.
Show resolved Hide resolved
# on:
# push:
# branches:
# - "dev"

jobs:
Build-Push-Images-To-Docker-Hub:
Expand Down
7 changes: 0 additions & 7 deletions agents-api/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,13 @@
name: julep-agents-api
version: "3"

# TODO: figure out why this doesn't work
# include:
# - ../model-serving/docker-compose.yml
# - ../memory-store/docker-compose.yml

services:
agents-api:
image: julepai/agents-api:dev
env_file: "../.env"

container_name: agents-api
depends_on:
model-serving:
condition: service_started
memory-store:
condition: service_started
worker:
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ name: julep
version: "3"

include:
- ./memory-store/docker-compose.yml
- ./model-serving/docker-compose.yml
- ./agents-api/docker-compose.yml
- ./gateway/docker-compose.yml
- ./memory-store/docker-compose.yml

# TODO: Enable after testing
# - ./model-serving/docker-compose.yml
# - ./monitoring/docker-compose.yml
Loading