-
Notifications
You must be signed in to change notification settings - Fork 17
Description
Sickcodes seems to have changed their naming for their docker images. Attempting to run the current docker run command give the following error:
"Unable to find image 'sickcodes/docker-osx:ventura' locally (attempting to pull the image)
docker: Error response from daemon: manifest for sickcodes/docker-osx:ventura not found: manifest unknown: manifest unknown"
Incorrect Command:
docker run
--rm
--name bluebubbles-setup
--dns=1.1.1.1
--device /dev/kvm
-p 5999:5999
-v /tmp/.X11-unix:/tmp/.X11-unix
-v $PWD/maindisk.qcow2:/image
-e IMAGE_PATH="/image"
-e EXTRA="-display none -vnc 0.0.0.0:99,password-secret=secvnc0 -object secret,id=secvnc0,data=vncpass"
-e DISPLAY=:99
-e WIDTH=1920
-e HEIGHT=1080
-e GENERATE_UNIQUE=true
sickcodes/docker-osx:ventura
Updated Command:
docker run
--rm
--name bluebubbles-setup
--dns=1.1.1.1
--device /dev/kvm
-p 5999:5999
-v /tmp/.X11-unix:/tmp/.X11-unix
-v $PWD/maindisk.qcow2:/image
-e IMAGE_PATH="/image"
-e EXTRA="-display none -vnc 0.0.0.0:99,password-secret=secvnc0 -object secret,id=secvnc0,data=vncpass"
-e DISPLAY=:99
-e WIDTH=1920
-e HEIGHT=1080
-e GENERATE_UNIQUE=true
sickcodes/docker-osx:latest
Docker Compose:
version: "3.8"
services:
bluebubbles:
image: sickcodes/docker-osx:latest
container_name: bluebubbles-setup
restart: unless-stopped
devices:
- /dev/kvm
ports:
- "5999:5999"
volumes:
- ./maindisk.qcow2:/image
environment:
IMAGE_PATH: "/image"
EXTRA: "-display none -vnc 0.0.0.0:99,password-secret=secvnc0 -object secret,id=secvnc0,data=vncpass"
WIDTH: "1920"
HEIGHT: "1080"
GENERATE_UNIQUE: "true"
Sources:
https://github.com/sickcodes/Docker-OSX#initial-setup
https://hub.docker.com/r/sickcodes/docker-osx/tags?page=1&ordering=last_updated