qemu-docker icon indicating copy to clipboard operation
qemu-docker copied to clipboard

[Question]: How do i connect into SSH and VNC?

Open Vann-Dev opened this issue 1 year ago • 3 comments

Is your question not already answered in the FAQ?

  • [X] I made sure the question is not listed in the FAQ.

Is this a general question and not a technical issue?

  • [X] I am sure my question is not about a technical issue.

Question

How do I connect to the SSH?, and how can I connect via VNC too?

services:
  qemu:
    image: qemux/qemu-docker
    environment:
      DISPLAY: "vnc"
      RAM_SIZE: "512M"
      DISK_SIZE: "1G"
      BOOT: "https://dl-cdn.alpinelinux.org/alpine/v3.9/releases/x86_64/alpine-virt-3.9.6-x86_64.iso"
    devices:
      - /dev/kvm
    cap_add:
      - NET_ADMIN
    ports:
      - 2204:22
      - 5900:5900
    stop_grace_period: 2m

if I remember that Vnc is on 5900 right?, I've read some of the issues created by other too https://github.com/qemus/qemu-docker/issues/573#issuecomment-2240634671

but when I access it it showed nothing on the web image

also how do I connect into the ssh?, since I got this image

Vann-Dev avatar Jul 23 '24 15:07 Vann-Dev