Skip to content

Commit

Permalink
code-interpretor support
Browse files Browse the repository at this point in the history
  • Loading branch information
dividor committed May 3, 2024
1 parent 94b6061 commit 56f7c8a
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ services:
recipedb:
#platform: linux/amd64
image: ankane/pgvector:latest
container_name: haa-datarecipes
container_name: haa-datarecipesdb
environment:
POSTGRES_DB: ${POSTGRES_RECIPE_DB}
POSTGRES_USER: ${POSTGRES_RECIPE_USER}
Expand Down Expand Up @@ -140,6 +140,16 @@ services:
- type: bind
source: ./ingestion
target: /app
code-interpretor:
image: ghcr.io/iamgreggarcia/codesphera:latest
container_name: haa-code-interpretor
build:
context: code-interpretor
ports:
- "3333:3333"
volumes:
- ./code-interpretor/static:/app/static
command: python3 -c "import localserver.main; localserver.main.start()"

volumes:
pgdata2:

0 comments on commit 56f7c8a

Please sign in to comment.