Fix Dockerfile base images and add docker-compose

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>
This commit is contained in:
2026-02-17 16:55:34 +01:00
co-authored by Claude Opus 4.6
parent 201155c0b2
commit 2c576aff4e
2 changed files with 12 additions and 2 deletions
+10
View File
@@ -0,0 +1,10 @@
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"