15 lines
294 B
Markdown
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
|
|
```
|