Proxmox + Docker

Create a Container using Ubuntu server update & upgrade the ubuntu intall cURL run command cURL -sSL https://get.docker.com | sh check the installed version of dockerdocker -v Ref: 'https://www.youtube.com/watch?v=ufiSO9RHhYg script link: 'https://docs.docker.com/engine/install/ubuntu/

Install Ubuntu on a Chromebook

Installation : 'https://ubuntu.com/tutorials/install-ubuntu-on-chromebook#1-overview 'https://www.youtube.com/watch?v=6t4upBIKxUo script: 'https://mrchromebox.tech/#fwscript Mounting An External Drive On Ubuntu Server: 'https://kenfavors.com/code/mounting-an-external-drive-on-ubuntu-server/ How to Connect to a Wi-Fi Network on Ubuntu Server: 'https://www.makeuseof.com/connect-to-wifi-network-on-ubuntu-server/ install home assistant on ubuntu server: 'https://www.makeuseof.com/install-supervised-home-assistant-server-on-ubuntu/ Install docker on ubuntu: 'https://www.makeuseof.com/install-docker-ubuntu/ Home Assistant installation: 'https://www.home-assistant.io/installation/

Docker

dockerfile ---(build)--->image---(run)--->Containers Pull a image from docker hub(if not available locally) and run it: docker run {hello-world} Pull a images from docker hub: docker pull {nginx} List of downloaded images: docker images List of running containers: docker container list Export docker container image: docker export {id} > myubuntu.zip Import docker container image: docker import - … Continue reading Docker