Where is my OS

My HP Microserver Gen10 does not recognize the SSD boot disc. The server would not reply to PING. So i connected a monitor locally and got no output. Then i hard power cycled the server, from there i could see the server boot, but only the Marvell RAID filesystem was recognized. I am going to […]

Guide to docker run

docker run starts your containers There is a ton of info out there, so i wont copy it. Here are some of the links that i found useful https://docs.docker.com/engine/reference/run/#detached-vs-foreground/  https://stackoverflow.com/questions/49726272/docker-run-why-use-rm-docker-newbie  https://blog.codeship.com/the-basics-of-the-docker-run-command/ Lets break down a few examples docker run -d –name=”home-assistant” -v /srv/docker/hassconfig:/config -v /etc/localtime:/etc/localtime:ro –net=host homeassistant/home-assistant -d This runs the container in the background. […]

How to remove a Docker Container on CentOS

My current understanding is that in order to change a running parameter of a Docker Container, the existing instance must be removed and a new one started. Here is how to do that. First stop your container https://www.google.com/search?q=docker+stop+container https://docs.docker.com/engine/reference/commandline/stop/ Get your container ID using docker ps first and make sure its gone after stop completes […]

Installing Home Assistant on Docker

Now Docker is up and running lets try and get Home Assistant going.   https://www.google.com/search?q=docker+home+assistant The first result is Home Assistants official instructions “Adjust the following command so that /path/to/your/config/ points at the folder where you want to store your configuration” So my first task is to work out where is a good place to save these […]

Begin typing your search term above and press enter to search. Press ESC to cancel.

Back To Top