forked from molecule-ai/molecule-core
infra(docker-compose): include infra services so docker compose up starts Temporal
Per issue #153: `docker compose up -d` (docker-compose.yml) did not start Temporal because it lived only in docker-compose.infra.yml. Users had to know to run `setup.sh` which explicitly uses `-f docker-compose.infra.yml`. Adding `include: - docker-compose.infra.yml` makes the full infra stack (starting with Temporal) start with the default `docker compose up` command. Both compose files define postgres/redis — the main file's definitions take precedence via compose merge semantics, so no service conflicts. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
parent
6193f67bc0
commit
8cd52fc642
@ -1,3 +1,7 @@
|
||||
# Include infra services (Temporal, Langfuse) so `docker compose up` starts the full stack.
|
||||
include:
|
||||
- docker-compose.infra.yml
|
||||
|
||||
services:
|
||||
# --- Infrastructure ---
|
||||
postgres:
|
||||
|
||||
Loading…
Reference in New Issue
Block a user