README: bump pull/compose examples to 0.5.1

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
andrew
2026-07-11 14:58:57 -06:00
parent 04c36af6b3
commit 9a879b5322
+4 -4
View File
@@ -73,10 +73,10 @@ Optional, add these later if you want them:
Pull the prebuilt image onto your Docker host:
```bash
docker pull git.kretzer.club/andrew/alembic:0.5
docker pull git.kretzer.club/andrew/alembic:0.5.1
```
That is the whole install. You do not need to download the source or build anything. The `0.5` is the version; you can pin to it so nothing changes under you, or use `latest` to always get the newest.
That is the whole install. You do not need to download the source or build anything. The `0.5.1` is the version; you can pin to it so nothing changes under you, or use `latest` to always get the newest.
(If you would rather build it yourself from source, you can, but you do not need to.)
@@ -136,7 +136,7 @@ Create a file called `docker-compose.yml` on your server (put it wherever you ke
```yaml
services:
alembic:
image: git.kretzer.club/andrew/alembic:0.5
image: git.kretzer.club/andrew/alembic:0.5.1
container_name: alembic
ports:
- "8420:8420"
@@ -220,7 +220,7 @@ That's it. On its next scheduled run (or immediately, using the **Run now** butt
## Updating alembic
When a new version is released, change the version in your `docker-compose.yml` (for example `:0.5` to the new number), then pull and restart:
When a new version is released, change the version in your `docker-compose.yml` (for example `:0.5.1` to the new number), then pull and restart:
```bash
docker compose pull