Skip to content

Commit f1e3445

Browse files
authored
Update README.md
1 parent f03d903 commit f1e3445

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed

README.md

+13-5
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ You need the following things to run this:
9595

9696
There are two ways of setting the container up.
9797

98-
Either by building the container image locally or by fetching the prebuilt container image from the Github container registry.
98+
Either by building the container image locally or by fetching the prebuilt container image from a container registry.
9999

100100
### Building the Container Image locally using VSCode
101101

@@ -113,9 +113,13 @@ Either by building the container image locally or by fetching the prebuilt conta
113113

114114
### Fetching the prebuilt container images using Docker
115115

116-
This container image is published to the Github Container Registry (GHCR).
116+
This container image is published to the Github Container Registry (GHCR) and the Docker Hub (hub.docker.com).
117117

118-
You may find the package here: https://github.com/jakoch/cpp-devbox/pkgs/container/cpp-devbox.
118+
You may find the Docker Hub repository here: https://hub.docker.com/r/jakoch/cpp-devbox
119+
120+
You may find the GHCR package here: https://github.com/jakoch/cpp-devbox/pkgs/container/cpp-devbox
121+
122+
In order to pull from GHCR add the prefix (`ghcr.io/`).
119123

120124
**Command Line**
121125

@@ -125,18 +129,22 @@ You can install the container image from the command line:
125129
docker pull ghcr.io/jakoch/cpp-devbox:bookworm-latest
126130
```
127131

132+
```bash
133+
docker pull jakoch/cpp-devbox:bookworm-latest
134+
```
135+
128136
For the image containing Vulkan SDK append `with-vulkansdk-latest`:
129137

130138
```bash
131-
docker pull ghcr.io/jakoch/cpp-devbox:bookworm-with-vulkansdk-latest
139+
docker pull jakoch/cpp-devbox:bookworm-with-vulkansdk-latest
132140
```
133141

134142
**Dockerfile**
135143

136144
You might also use this container image as a base image in your own `Dockerfile`:
137145

138146
```bash
139-
FROM ghcr.io/jakoch/cpp-devbox:bookworm-latest
147+
FROM jakoch/cpp-devbox:bookworm-latest
140148
```
141149

142150
### Fetching the prebuilt container images using a .devcontainer config

0 commit comments

Comments
 (0)