mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-06-07 07:55:16 +02:00
13 lines
No EOL
439 B
YAML
13 lines
No EOL
439 B
YAML
# Docker Compose Override for Local Development
|
|
# This file automatically provides the pipecat commit SHA when building locally
|
|
# It's automatically merged with docker-compose.yaml
|
|
|
|
services:
|
|
api:
|
|
build:
|
|
context: ./api
|
|
dockerfile: Dockerfile
|
|
args:
|
|
# Dynamically get pipecat commit SHA from submodule
|
|
# This will be evaluated when docker-compose build is run
|
|
PIPECAT_COMMIT: ${PIPECAT_COMMIT} |