Skip to content

Commit 64bb765

Browse files
committed
Preparation for v0.6.0
Signed-off-by: Kohei Tokunaga <[email protected]>
1 parent 79d4281 commit 64bb765

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@ RUN git clone https://github.com/containers/common $GOPATH/src/github.com/contai
119119
# Binaries for release
120120
FROM scratch AS release-binaries
121121
COPY --from=snapshotter-dev /out/* /
122+
COPY --from=stargz-store-dev /out/* /
122123

123124
# Base image which contains containerd with default snapshotter
124125
FROM golang-base AS containerd-base

docs/INSTALL.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ To enable lazy pulling of eStargz on containerd, you need to install *Stargz Sna
2828
This section shows the step to install Stargz Snapshotter with systemd.
2929
We assume that you are using containerd (> v1.4.2) as a CRI runtime.
3030

31-
- Download release tarball from [the release page](https://github.com/containerd/stargz-snapshotter/releases). For example, amd64 binary of v0.5.0 is available from https://github.com/containerd/stargz-snapshotter/releases/download/v0.5.0/stargz-snapshotter-v0.5.0-linux-amd64.tar.gz.
31+
- Download release tarball from [the release page](https://github.com/containerd/stargz-snapshotter/releases). For example, amd64 binary of v0.6.0 is available from https://github.com/containerd/stargz-snapshotter/releases/download/v0.6.0/stargz-snapshotter-v0.6.0-linux-amd64.tar.gz.
3232

3333
- Add the following configuration to containerd's configuration file (typically: /etc/containerd/config.toml). Please see also [an example configuration file](../script/config/etc/containerd/config.toml).
3434
```toml
@@ -80,7 +80,7 @@ To enable lazy pulling of eStargz on CRI-O/Podman, you need to install *Stargz S
8080
This section shows the step to install Stargz Store with systemd.
8181
We assume that you are using CRI-O newer than https://github.com/cri-o/cri-o/pull/4850 or Podman newer than https://github.com/containers/podman/pull/10214 .
8282

83-
- Download release tarball from [the release page](https://github.com/containerd/stargz-snapshotter/releases).
83+
- Download release tarball from [the release page](https://github.com/containerd/stargz-snapshotter/releases). For example, amd64 binary of v0.6.0 is available from https://github.com/containerd/stargz-snapshotter/releases/download/v0.6.0/stargz-snapshotter-v0.6.0-linux-amd64.tar.gz.
8484

8585
- Add the following configuration to the storage configuration file of CRI-O/Podman (typically: /etc/containers/storage.conf). Please see also [an example configuration file](../script/config-cri-o/etc/containers/storage.conf).
8686
```toml

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ require (
88
github.com/containerd/containerd v1.5.0
99
github.com/containerd/continuity v0.1.0
1010
github.com/containerd/go-cni v1.0.2
11-
github.com/containerd/stargz-snapshotter/estargz v0.5.0
11+
github.com/containerd/stargz-snapshotter/estargz v0.6.0
1212
github.com/coreos/go-systemd/v22 v22.3.1
1313
github.com/docker/cli v20.10.6+incompatible
1414
github.com/docker/docker v20.10.6+incompatible // indirect

0 commit comments

Comments
 (0)