Skip to content

Commit

Permalink
docs(readme): notice of docker version
Browse files Browse the repository at this point in the history
  • Loading branch information
2moe committed May 27, 2024
1 parent 90186b6 commit e0fcb9c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/test-arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ jobs:
# shell: zsh --pipefail -fex {0}
env:
circle_runner: ${{ startsWith(matrix.runner, 'circle') }}
linux: ${{ runner.os == 'Linux' }}
steps:
# - name: install zsh
# shell: sh -e {0}
Expand All @@ -43,7 +42,7 @@ jobs:
run: ${{ secrets.MEDIUM_ARM64_RUNNER }}

- name: init runner
if: fromJSON(env.linux)
if: fromJSON(env.circle_runner)
run: sudo touch /run/runner_connected

- name: test
Expand All @@ -54,5 +53,5 @@ jobs:
free -mh
- name: disconnect
if: always() && fromJSON(env.linux)
if: always() && fromJSON(env.circle_runner)
run: sudo unlink /run/runner_connected
8 changes: 7 additions & 1 deletion Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@
- [Releases](https://github.com/2cd/debian-museum/releases)
- [Containers](https://github.com/2cd/debian-museum/pkgs/container/debian)

Important: All container images will be migrated to the tar+zstd format.

Older versions of docker do not support tar+zstd!

`docker.io` installed with apt is still stuck at v20.10, you may need to install docker-ce manually.

## History

| version | release |
Expand Down Expand Up @@ -280,7 +286,7 @@ The Dev VM comes pre-installed with Docker, qemu-user-static, and systemd-nspawn
- Just change the values of `ver` & `arch`
- What follows may seem complicated, but it's actually quite simple to follow step-by-step.
- Depends:
- `docker.io` | `docker-ce` | `docker-ee`
- `docker-ce` | `docker-ee`
- `zsh` (>= 5)
- Recommends:
- [qemu-user-static](https://tracker.debian.org/pkg/qemu) | [qemu-user-static-binfmt](https://archlinux.org/packages/extra/x86_64/qemu-user-static-binfmt/)
Expand Down

0 comments on commit e0fcb9c

Please sign in to comment.