@@ -95,7 +95,7 @@ You need the following things to run this:
95
95
96
96
There are two ways of setting the container up.
97
97
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.
99
99
100
100
### Building the Container Image locally using VSCode
101
101
@@ -113,9 +113,13 @@ Either by building the container image locally or by fetching the prebuilt conta
113
113
114
114
### Fetching the prebuilt container images using Docker
115
115
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) .
117
117
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/ ` ).
119
123
120
124
** Command Line**
121
125
@@ -125,18 +129,22 @@ You can install the container image from the command line:
125
129
docker pull ghcr.io/jakoch/cpp-devbox:bookworm-latest
126
130
```
127
131
132
+ ``` bash
133
+ docker pull jakoch/cpp-devbox:bookworm-latest
134
+ ```
135
+
128
136
For the image containing Vulkan SDK append ` with-vulkansdk-latest ` :
129
137
130
138
``` bash
131
- docker pull ghcr.io/ jakoch/cpp-devbox:bookworm-with-vulkansdk-latest
139
+ docker pull jakoch/cpp-devbox:bookworm-with-vulkansdk-latest
132
140
```
133
141
134
142
** Dockerfile**
135
143
136
144
You might also use this container image as a base image in your own ` Dockerfile ` :
137
145
138
146
``` bash
139
- FROM ghcr.io/ jakoch/cpp-devbox:bookworm-latest
147
+ FROM jakoch/cpp-devbox:bookworm-latest
140
148
```
141
149
142
150
### Fetching the prebuilt container images using a .devcontainer config
0 commit comments