You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When starting minikube on an OS with a running docker server, but without a systemctl binary, I get the following error: Failed to enable container runtime: running command: sudo systemctl start docker: exit status 1
Of course, it can't start docker via systemctl, docker is already running, and, systemctl is not valid binary on my synology drive.
o minikube v1.0.1 on linux (amd64)
- minikube will upgrade the local cluster from Kubernetes 1.12.5 to 1.14.1
i Tip: Use 'minikube start -p <name>' to create a new cluster, or 'minikube delete' to delete this one.
: Restarting existing none VM for "minikube" ...
: Waiting for SSH access ...
- "minikube" IP address is 192.168.86.23
- Configuring Docker as the container runtime ...
! Failed to enable container runtime: running command: sudo systemctl start docker: exit status 1
* Sorry that minikube crashed. If this was unexpected, we would love to hear from you:
- https://github.com/kubernetes/minikube/issues/new
Is it possible to bypass the use of systemctl (and journalctl)?
The text was updated successfully, but these errors were encountered:
It is recommended to use the apt installation of docker from (Docker, when using the none driver. The snap installation of docker does not work with minikube.
When starting
minikube
on an OS with a runningdocker
server, but without asystemctl
binary, I get the following error:Failed to enable container runtime: running command: sudo systemctl start docker: exit status 1
Of course, it can't start
docker
viasystemctl
,docker
is already running, and,systemctl
is not valid binary on my synology drive.minikube start --v=7 --memory 1000 --cpus 1 --disk-size=120000MB --vm-driver=none
Is it possible to bypass the use of
systemctl
(andjournalctl
)?The text was updated successfully, but these errors were encountered: