Archive for category Docker

IoT and Docker: Using the Espressif Docker Image for ESP32 Development

Use Case: Use the ESP32 IDF Docker Image from Espressif and create binaries for the ESP32-Lyradt Boards. The Docker Image will be used interactively. The ESP32 ADF will be local on the Linux Host. We get the ADF Environment with the command: git clone –recursive https://github.com/espressif/esp-adf.git Mount a local host directory inside Docker Image docker […]

Leave a comment

First Steps with Kubernetes (K8s)

I started working with Kubernetes and I recognized that Kubernetes (K8s) is powerful but also very complex. My attitude with new softeware is: Read about it Try it out to get a “feeling” what is possible. Let me share my experience with you in the next steps…   Minikube (“local Kubernetes”) The fastest way to […]

Leave a comment

Challenge: CLM Server Image with confidential Data stored on Docker Hub?

There are still obstacles to use the Cloud, even in a private Repository on Docker Hub. You are walking on “thin ice” when you put important/confidential data to a Cloud solution. Why is it necessary to have a CLM Server Image on Docker Hub? We currently use a  Git, Travis and Docker Integration, it means […]

Leave a comment

Create a Docker Image on a Raspberry Pi2

When Docker is running with Archlinux on a Raspberry Pi2, it is time to create a first Docker Image. Get/pull a Docker Image from docker.com with “docker pull resin/rpi-raspbian” because this is Raspian 8 Jessie. Run the Docker Image with “docker run -t -i -p 8000:8000 –privileged philipz/rpi-raspbian /bin/bash”  Make the necessary changes inside the Docker Image […]

Leave a comment