Skip to content

Latest commit

 

History

History
123 lines (80 loc) · 3.56 KB

File metadata and controls

123 lines (80 loc) · 3.56 KB

🐳 Installing Docker on Your Fydetab DUO with FydeOS + Portainer Dashboard 🚀

Note

All the process is described in more detail in this video.

Hi there! 👋 In this guide, I'll show you how to install Docker on your Fydetab DUO tablet running FydeOS.


📚 Index



🛠️ Prerequisites

Before we begin, make sure you have the following:

  • A Fydetab DUO tablet with FydeOS 📱
  • Internet connection 🌐
  • Access to FydeOS terminal. If you don't know you to do it check this video

🖥️ 1. Update Debian container

  • 🖥️ Access FydeOS Terminal app and start the penguin container:

Execute the following commands:

sudo apt update -y
sudo apt upgrade -y

🔨 2. Install Docker prerequisites

We are going to follow the official installation guide for Debian.

  • We need to install gnome-terminal:
sudo apt install gnome-terminal

🐳 3. Install Docker tools (Docker Engine)

Now we are going to follow the instructions to setup Docker with apt repository

  1. Set up Docker's apt repository (copy and execute this in the terminal)
# Add Docker's official GPG key:
sudo apt-get update
sudo apt-get install ca-certificates curl
sudo install -m 0755 -d /etc/apt/keyrings
sudo curl -fsSL https://download.docker.com/linux/debian/gpg -o /etc/apt/keyrings/docker.asc
sudo chmod a+r /etc/apt/keyrings/docker.asc

# Add the repository to Apt sources:
echo \
  "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/debian \
  $(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \
  sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt-get update
  1. Install Docker packages
sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin

✅ 4. Check that Docker can run

  • Run the Hello World image
sudo docker run hello-world

You should see the following output


📊 5. Install and run Portainer to manage our Docker images

We are going to follow the same steps that are described in this tutorial for the Raspberry Pi.

  1. Lets download the Portainer image
sudo docker pull portainer/portainer-ce:latest
  1. Start and run the Portainer container
sudo docker run -d -p 9000:9000 --name=portainer --restart=always -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer-ce:latest
  1. Go to the URL http://localhost:9000 and create a new user

  1. Go to the Home page and login to the local installation

  1. Enjoy your images and containers!!