This commit is contained in:
2026-03-14 20:02:05 +08:00
commit 2c0bf6b36a
5 changed files with 75 additions and 0 deletions

14
README.md Normal file
View File

@@ -0,0 +1,14 @@
# docker-hello-world
This repository publishes `git.wolves.top/public/hello-world:latest` as a
single multi-architecture image with these platforms:
- `linux/amd64`
- `linux/arm64`
## Local test
```bash
docker build -t hello-world:local .
docker run --rm -p 8080:8080 hello-world:local
```