- Require frankfurter.rates namespace in core.clj so Integrant can find it - Use /v1/ prefix for self-hosted Frankfurter API - Display BTC price converted to EUR and DKK instead of raw exchange rates - Remove unused host port mapping for Frankfurter container Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
20 lines
505 B
YAML
20 lines
505 B
YAML
services:
|
|
btcdata:
|
|
build: .
|
|
restart: unless-stopped
|
|
ports:
|
|
- "4101:4101"
|
|
depends_on:
|
|
- frankfurter
|
|
environment:
|
|
BTCDATA_PORT: "4101"
|
|
JDBC_URL: "jdbc:postgresql://postgres:5432/btcprod?user=postgres&password=ratata,123"
|
|
CORS_ORIGIN: "http://localhost:4041"
|
|
FRANKFURTER_URL: "http://frankfurter:8080"
|
|
extra_hosts:
|
|
- "postgres:host-gateway"
|
|
|
|
frankfurter:
|
|
image: lineofflight/frankfurter
|
|
restart: unless-stopped
|