feat: update to latest versions of all service runtimes - #230
Conversation
- titiler-pgstac v3.0.0 - stac-fastapi-pgstac v6.3.1 - tipg v1.4.0 - stac-browser v5.0.0-rc.1 resolves #229
ed0c482 to
f9844af
Compare
|
Works well for me thanks! |
| database: | ||
| # The PgSTAC image does not publish an arm64 manifest for this tag, so run | ||
| # the amd64 image under emulation on Apple Silicon and other arm64 hosts. | ||
| platform: linux/amd64 |
There was a problem hiding this comment.
Can we drop this pin? v0.9.11 seems to publish a linux/arm64 manifest and runs natively on Apple Silicon (verified: aarch64, schema 0.9.11, PostGIS 3.5), so this now forces emulation on such devices
There was a problem hiding this comment.
do you mean just drop the platform: linux/amd64?
There was a problem hiding this comment.
yes sorry! I realised I was not clear 😅
lhoupert
left a comment
There was a problem hiding this comment.
Hey I ran this branch end to end before reviewing, all four backend services plus a full build and run of the rewritten browser image and it all works!
Two things (found by Claude) that may hit people who already ran the stack before, so not PR bugs, but maybe worth a short note in the README (right under docker compose up, ~L55)?
🤖 Claude speaking:
- The browser image won't rebuild by itself. The mapping goes 8085:8085 → 8085:8080 and the new Dockerfile makes nginx listen on 8080, but docker compose up doesn't rebuild a build: service when its Dockerfile changes. So with a cached eoapi-stac-browser you get host 8085 → container 8080 and localhost:8085 just refuses the connection. docker compose up --build fixes it.
- Bumping the pgstac tag doesn't migrate an existing .pgdata. The schema only installs on an empty data dir, so get_version() stays at 0.9.6 — silently: both services return 200 against the old schema and /_mgmt/health just reports "pgstac_version": "0.9.6". Nothing breaks, you just don't get the 0.9.7–0.9.11 fixes. Fix is rm -rf .pgdata or pypgstac migrate from outside the container (pypgstac isn't installed in the pgstac image).
SB_CONFIGenv var)resolves #229