mirror of
https://github.com/temporal-community/temporal-ai-agent.git
synced 2026-03-15 14:08:08 +01:00
21 lines
481 B
YAML
21 lines
481 B
YAML
services:
|
|
api:
|
|
volumes:
|
|
- ./:/app:cached
|
|
command: uvicorn api.main:app --host 0.0.0.0 --port 8000 --reload
|
|
|
|
worker:
|
|
volumes:
|
|
- ./:/app:cached
|
|
command: python scripts/run_worker.py
|
|
|
|
train-api:
|
|
volumes:
|
|
- ./:/app:cached
|
|
command: python thirdparty/train_api.py
|
|
|
|
frontend:
|
|
volumes:
|
|
- ./frontend:/app:cached
|
|
command: sh -c "apk update && apk add --no-cache xdg-utils && npm install && npx vite --host 0.0.0.0 --port 5173"
|