Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions docker-compose.farm-smoke-override.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@ services:
com.farm.compose.profile: "farm-smoke-override"

api:
# Base compose scales api to 3 replicas (production shape). The smoke stack
# publishes a single fixed host port 127.0.0.1:13000 → :3000, which can only
# be bound by one container. Collapse to a single replica for smoke so the
# second/third replica does not fail with "port is already allocated".
deploy:
replicas: 1
ports:
- "127.0.0.1:13000:3000"
environment:
Expand Down
Loading