Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,8 @@ Docker images are published to `ghcr.io/lambdaclass/ethlambda` with the followin
| Tag | Description |
|-----|-------------|
| `devnetX` | Stable image for a specific devnet (e.g. `devnet4`) |
| `latest` | Alias for the stable image of the currently running devnet |
| `unstable` | Development builds; promoted to `devnetX`/`latest` once tested |
| `latest` | Alias for the latest stable image of the currently running devnet |
| `unstable` | Built from the latest main commit; promoted to `devnetX`/`latest` once tested |
| `sha-XXXXXXX` | Specific commit |

[`RELEASE.md`](./RELEASE.md) has more details on our release process and how to tag new images.
Expand Down
8 changes: 4 additions & 4 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,17 @@ exact commit it was built from.
On top of that, the workflow accepts a comma-separated list of custom tags as a
parameter (e.g. `latest,devnet2`). We use the following tagging convention:

- `unstable` - the latest image built from the `main` branch, without any devnet-specific features
- `latest` - the latest image built for the current devnet (`devnet3` at the time of writing)
- `devnetX` - the latest image built with `devnetX` support (e.g. `devnet3`, `devnet4`)
- `unstable` - the latest image built from the `main` branch
- `latest` - the latest stable image built for the current devnet (`devnet5` at the time of writing)
- `devnetX` - the latest stable image built with `devnetX` support (e.g. `devnet3`, `devnet4`)
Comment thread
MegaRedHand marked this conversation as resolved.
Outdated

Future devnets will introduce new tags, with previous ones left without updates.

### Pulling an image

```bash
docker pull ghcr.io/lambdaclass/ethlambda:unstable # latest from main
docker pull ghcr.io/lambdaclass/ethlambda:devnet3 # devnet3-compatible
docker pull ghcr.io/lambdaclass/ethlambda:devnet5 # devnet5-compatible
docker pull ghcr.io/lambdaclass/ethlambda:sha-12f8377 # pinned to a specific commit
```

Expand Down