mirror of
https://github.com/tonistiigi/xx
synced 2025-09-27 03:25:51 +08:00
11 lines
255 B
Bash
Executable File
11 lines
255 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
docker buildx bake dev
|
|
|
|
if ! docker volume inspect xx-pkg-cache >/dev/null 2>&1; then
|
|
docker volume create xx-pkg-cache >/dev/null 2>&1
|
|
fi
|
|
|
|
docker run -it --rm -v xx-pkg-cache:/pkg-cache tonistiigi/xx:dev
|
|
docker rmi tonistiigi/xx:dev
|