Archive for category Docker
IoT and Docker: Using the Espressif Docker Image for ESP32 Development
Posted by rtcpractise in Docker, ESP32, IoT, Uncategorized on 30/09/2020
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 […]
First Steps with Kubernetes (K8s)
Posted by rtcpractise in Docker, Kubernetes on 06/11/2017
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 […]
Challenge: CLM Server Image with confidential Data stored on Docker Hub?
Posted by rtcpractise in CLM Web Extension, DNG, Docker on 17/10/2017
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 […]
Create a Docker Image on a Raspberry Pi2
Posted by rtcpractise in Docker, Raspberry Pi on 11/02/2015
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 […]