Lift the pre-release freeze — releases resume and the plugin contract goes live

This commit is contained in:
2026-08-20 22:02:29 +02:00
parent c16fb2449b
commit ecf33733a1
4 changed files with 27 additions and 50 deletions
+3 -3
View File
@@ -22,7 +22,7 @@ so there is nothing to clone. In an empty directory, save this as `compose.yml`:
```yaml
services:
web:
image: larvit/plainpages:0.0.2
image: larvit/plainpages:0.1.0
ports:
- "3000:3000"
environment:
@@ -41,7 +41,7 @@ services:
# One-shot, idempotent seed: signing key if absent + the admin@plainpages.local / admin user.
bootstrap:
image: larvit/plainpages:0.0.2
image: larvit/plainpages:0.1.0
command: node src/auth/bootstrap.ts
depends_on:
kratos:
@@ -143,7 +143,7 @@ volumes:
Extract the Ory config the image ships, then start:
```bash
docker run --rm larvit/plainpages:0.0.2 tar -cf - ory | tar -xf -
docker run --rm larvit/plainpages:0.1.0 tar -cf - ory | tar -xf -
mkdir -p plugins
docker compose up -d
```