Files
docker-hello-world/README.md
2026-03-14 20:02:05 +08:00

15 lines
294 B
Markdown

# 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
```