Replies: 2 comments 1 reply
|
You might want to look into if the Something like below worked for me FROM kalilinux/kali-rolling
ENV container=container
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y \
systemd \
systemd-sysv \
dbus \
sudo \
ca-certificates \
curl \
wget \
vim-tiny \
iproute2 \
iputils-ping \
openssh-server && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
RUN : > /etc/machine-id && \
: > /var/lib/dbus/machine-id && \
systemctl set-default multi-user.target# Build the local image
container build -t local/kali-machine:latest .
# Create the machine based on the local image
container machine create \
local/kali-machine:latest \
--name kali-mac \
--arch arm64
# Run the machine
container machine run -n kali-mac |
0 replies
|
OK, thanks, that got me going... ...in docker-compose.yml: ...this is what I ended up using. What's the trick to set the home directory automatically to /Users/username instead of /home/username ? |
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
So I'm trying to get my feet wet with Apple Container. I tried to install Kali into a container machine, but this ends like that:
Not exactly sure what to do with an error message like that and where to go from here...
All reactions