You can use Podman instead of Docker as a container engine. Docker Compose needs to be installed as we don't support Podman Compose yet.
Make sure you have installed and started Podman and Docker Compose, then follow these steps:
- Link
podman
command asdocker
command:ln -s $(which podman) /usr/local/bin/docker
- Edit
~/.docker/config.json
by changing thecredsStore
tocredStore
, it should look like this:{ "credStore": "desktop" }
- If not on Linux, ssh into the Podman Machine:
podman machine ssh
- Edit the
delegate.conf
file:By addingsudo vi /etc/systemd/system/[email protected]/delegate.conf
cpuset
to theDelegate
line, it should look like this:[Service] Delegate=memory pids cpu cpuset io
- Restart the Podman Machine
podman machine stop podman machine start