Skip to content

Commit 1fb7cbc

Browse files
committed
Rename project to docker2vm
1 parent 69b6fe3 commit 1fb7cbc

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# gondolin-image-tools
1+
# docker2vm
22

3-
`gondolin-image-tools` converts OCI container images (or Dockerfiles via BuildKit) into Gondolin-compatible outputs.
3+
`docker2vm` converts OCI container images (or Dockerfiles via BuildKit) into VM-compatible outputs. Today, the runtime materialization target is Gondolin.
44

55
It follows an OCI-first flow inspired by "Docker without Docker":
66

bun.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"name": "gondolin-image-tools",
2+
"name": "docker2vm",
33
"version": "0.1.0",
44
"private": true,
5-
"description": "OCI-first external image tooling for Gondolin",
5+
"description": "OCI-first container-to-VM image tooling",
66
"license": "Apache-2.0",
77
"type": "commonjs",
88
"bin": {

src/oci2gondolin/utils/fs.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ export function assertDirectoryExists(dirPath: string, label: string): void {
3535
export function getCacheRoot(): string {
3636
const xdgCache = process.env.XDG_CACHE_HOME;
3737
if (xdgCache && xdgCache.trim().length > 0) {
38-
return path.resolve(xdgCache, "gondolin-image-tools");
38+
return path.resolve(xdgCache, "docker2vm");
3939
}
4040

41-
return path.resolve(os.homedir(), ".cache", "gondolin-image-tools");
41+
return path.resolve(os.homedir(), ".cache", "docker2vm");
4242
}
4343

4444
export function getBlobCachePath(digest: string): string {

0 commit comments

Comments
 (0)