File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed
Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -49,13 +49,20 @@ StatusPost/
4949Build the container image:
5050
5151``` bash
52- docker build -t statuspost:latest .
52+ docker build -t ghcr.io/arolang/example- statuspost:latest .
5353```
5454
5555Run locally:
5656
5757``` bash
58- docker run -p 8080:8080 statuspost:latest
58+ docker run -p 8080:8080 ghcr.io/arolang/example-statuspost:latest
59+ ```
60+
61+ Or pull the pre-built image directly:
62+
63+ ``` bash
64+ docker pull ghcr.io/arolang/example-statuspost:latest
65+ docker run -p 8080:8080 ghcr.io/arolang/example-statuspost:latest
5966```
6067
6168## Kubernetes Deployment
@@ -85,7 +92,7 @@ Edit `deployment/k8s/kustomization.yaml` to customize the image:
8592``` yaml
8693images :
8794 - name : statuspost
88- newName : your-registry/ statuspost
95+ newName : ghcr.io/arolang/example- statuspost
8996 newTag : v1.0.0
9097` ` `
9198
You can’t perform that action at this time.
0 commit comments