Switch to available base images (temurin-21) since clojure:openjdk-25 and azul/zulu-openjdk-alpine:25 no longer exist. Add docker-compose.yml for single-command app deployment. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
11 lines
247 B
YAML
11 lines
247 B
YAML
services:
|
|
app:
|
|
build: .
|
|
restart: unless-stopped
|
|
ports:
|
|
- "4040:4040"
|
|
environment:
|
|
JDBC_URL: "jdbc:postgresql://postgres:5432/btcprod?user=postgres&password=ratata,123"
|
|
extra_hosts:
|
|
- "postgres:host-gateway"
|