Skip to content

Commit

Permalink
Install the extra client wrappers
Browse files Browse the repository at this point in the history
But don't set up any alias for "docker" or "podman", by default.

They would conflict with the regular client (binary) programs.

Signed-off-by: Anders F Björklund <[email protected]>
  • Loading branch information
afbjorklund committed May 11, 2022
1 parent 38d1518 commit 632b701
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ binaries: clean \
_output/bin/lima \
_output/bin/limactl \
_output/bin/nerdctl.lima \
_output/bin/docker.lima \
_output/bin/podman.lima \
_output/share/lima/lima-guestagent.Linux-x86_64 \
_output/share/lima/lima-guestagent.Linux-aarch64 \
_output/share/lima/lima-guestagent.Linux-riscv64
Expand All @@ -40,6 +42,14 @@ _output/bin/nerdctl.lima:
mkdir -p _output/bin
cp -a ./cmd/nerdctl.lima $@

_output/bin/docker.lima: ./cmd/docker.lima
@mkdir -p _output/bin
cp -a $^ $@

_output/bin/podman.lima: ./cmd/podman.lima
@mkdir -p _output/bin
cp -a $^ $@

.PHONY: _output/bin/limactl
_output/bin/limactl:
# The hostagent must be compiled with CGO_ENABLED=1 so that net.LookupIP() in the DNS server
Expand Down

0 comments on commit 632b701

Please sign in to comment.