|
1
|
# docker-compose.override.yml — local dev overrides. |
|
2
|
# This file is applied automatically when you run `docker compose up`. |
|
3
|
# Exposes additional ports and loosens settings for local development. |
|
4
|
|
|
5
|
services: |
|
6
|
|
|
7
|
postgres: |
|
8
|
ports: |
|
9
|
- "5432:5432" |
|
10
|
|
|
11
|
ergo: |
|
12
|
# Expose the ergo HTTP management API locally for debugging. |
|
13
|
ports: |
|
14
|
- "8089:8089" |
|
15
|
environment: |
|
16
|
# Cheap bcrypt for local dev (already set in template default, just documenting). |
|
17
|
ERGO_HISTORY_ENABLED: "false" |
|
18
|
|
|
19
|
scuttlebot: |
|
20
|
# Rebuild image on every `docker compose up` for local dev. |
|
21
|
build: |
|
22
|
target: builder |
|
23
|
environment: |
|
24
|
# Verbose logging in dev. |
|
25
|
SCUTTLEBOT_LOG_LEVEL: debug |
|
26
|
|