- Create
storage/directory in root directory - Move your
debian.isointo it
For initial setup run:
docker-compose -f first-setup.yml up -dLog in to localhost:8006 via Browser and setup your server using the GUI.
After Installation, run the following command:
docker-compose up -dCheck ssh status by running:
systemctl status sshddocker exec -it qemu /bin/bash
ssh ikv@20.20.20.21 -p 22Confirm you're in the right place with (Output should not include trixie)
cat /etc/debian_versiondocker exec -it qemu /bin/bash
service ssh start && \
ps aux | grep sshdReview SSH Configuration:
grep -E 'PasswordAuthentication|PermitRootLogin' /etc/ssh/sshd_configThe SSH Configuration should be handled by .src/setup-ssh.sh, which is sourced in the Dockerfile.
sudo nano /etc/ssh/sshd_configChange Root Password for the QEMU virtual machine inside the Docker container:
# Make sure you're running from `docker exec -it qemu /bin/bash`
passwd root