Skip to content

Instantly share code, notes, and snippets.

@zhangw
Created March 15, 2022 12:03
Show Gist options
  • Save zhangw/8992a04fa062deee90b4da89ea675580 to your computer and use it in GitHub Desktop.
Save zhangw/8992a04fa062deee90b4da89ea675580 to your computer and use it in GitHub Desktop.
container cli (docker) alias in makefile
CONTAINER_CLI=docker
CONTAINER_CLI_VER:=$(shell docker --version 2>/dev/null)
ifndef DOCKER_CLI_VER
CONTAINER_CLI_VER:=$(shell lima -v 2>/dev/null)
endif
ifdef CONTAINER_CLI_VER
CONTAINER_CLI=lima nerdctl
endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment