Skip to content

Commit 08fb181

Browse files
committed
feat(cli): default to the quay.io registry
1 parent 52e80e1 commit 08fb181

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/core/typescript/itk-wasm/src/cli/process-common-options.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ function processCommonOptions(program, wasiDefault = false) {
1111

1212
const ociExePath = findOciExe()
1313

14-
let dockerImage = `itkwasm/emscripten:${defaultImageTag}`
14+
let dockerImage = `quay.io/itkwasm/emscripten:${defaultImageTag}`
1515
if (options.image) {
1616
dockerImage = options.image
1717
if (dockerImage === 'itkwasm/wasi') {
18-
dockerImage = `itkwasm/wasi:${defaultImageTag}`
18+
dockerImage = `quay.io/itkwasm/wasi:${defaultImageTag}`
1919
}
2020
}
2121

0 commit comments

Comments
 (0)