Crafted by Jhooq
open-menucloseme
Home
Ansible
Kubernetes
Terraform
YouTube
Learn
About
Contact
English Português
githubtwitterlinkedinrss
  • Docker - ADD, Update, Export Environment variable

    calendarJan 7, 2022 · 6 min read  ·
    Last Modified : Jan 7, 2022
    Share on: twitterfacebooklinkedincopy
    Author :  Rahul Wagh
    Docker - ADD, Update, Export Environment variable

    When writing a Dockerfile or docker-compose.yml you often need to rely on the ENVIRONMENT variable and there could be many reasons behind it, for example - If your container is using Python then you might wanna rely on the Python version which is set into the host machine's environment variable. another use case could …


    Read More
  • How to fix-Docker docker failed to compute cache key not found

    calendarDec 20, 2021 · 2 min read  ·
    Last Modified : Dec 20, 2021
    Share on: twitterfacebooklinkedincopy
    Author :  Rahul Wagh
    How to fix-Docker docker failed to compute cache key not found

    The Docker failed to compute cache key error is result of docker buildcommand which is executed on a directory where the Dockefile is not present. I had this issue when I was working with one of my project on my windows laptop and my directory structure looked like this - 1\parent-directory 2- test-file-1.py 3- …


    Read More
  • How to fix docker driver failed programming external connectivity on endpoint webserver?

    calendarDec 9, 2021 · 3 min read  ·
    Last Modified : Dec 9, 2021
    Share on: twitterfacebooklinkedincopy
    Author :  Rahul Wagh
    How to fix docker driver failed programming external connectivity on endpoint webserver?

    This blog post will address how to fix the docker issue EADDRINUSE (PORT or ADDRESS already in use). Here is a little error snapshot which I have taken from my docker container which I was aiming to run on port 1313 but unfortunately the port is already occupied by some other process. 1docker: Error response from …


    Read More
  • How to fix docker error executable file not found in $PATH?

    calendarNov 25, 2021 · 3 min read  ·
    Last Modified : Nov 25, 2021
    Share on: twitterfacebooklinkedincopy
    Author :  Rahul Wagh
    How to fix docker error executable file not found in $PATH?

    You might have encountered the error executable file not found in $PATH when you are trying to run your docker container. There could be many reasons for an error like this. But in simple words, the docker can not find the binary which you want to run inside the docker container. Let's take some examples to identify …


    Read More
  • How to expose port on live containers?

    calendarSep 21, 2021 · 5 min read  ·
    Last Modified : Aug 21, 2021
    Share on: twitterfacebooklinkedincopy
    Author :  Rahul Wagh
    How to expose port on live containers?

    As DevOps, we often make quite a lot of mistakes and one of the most oversight mistakes we generally do is forget to expose a port for the container. When you realize that you have not exposed any port for the container then you start looking for ways to change the port mapping of a live container or in other words, we …


    Read More
  • How to expose multiple ports with Docker?

    calendarSep 16, 2021 · 7 min read  ·
    Last Modified : Aug 11, 2021
    Share on: twitterfacebooklinkedincopy
    Author :  Rahul Wagh
    How to expose multiple ports with Docker?

    When we package any application using Docker then either we create Dockerfile or docker-compose.yaml, even you can create both the files and share the files with others. There is one important aspect in both the files .i.e. PORT. Any container which you build and ship to other developers has to have one or more defined …


    Read More
  • How to restart single docker container within multiple docker container?

    calendarAug 11, 2021 · 3 min read  ·
    Last Modified : Aug 11, 2021
    Share on: twitterfacebooklinkedincopy
    Author :  Rahul Wagh
    How to restart single docker container within multiple docker container?

    I am a real big fan of working with docker because it provides you a certain level of isolation and the ability to move your dockerize application anywhere from development to the production environment. But often when I work with the multiple numbers of running docker containers then it is often needed to restart a …


    Read More
  • How to edit file within Docker container or edit a file after I shell into a Docker container?

    calendarAug 5, 2021 · 6 min read  ·
    Last Modified : Aug 5, 2021
    Share on: twitterfacebooklinkedincopy
    Author :  Rahul Wagh
    How to edit file within Docker container or edit a file after I shell into a Docker container?

    While working on my Spring Boot Microservices with Docker I felt a need to edit some of the files present under my docker container. But when I tried to edit the file nano application.yaml it throws me an error bash: nano: command not found. So I was not able to edit the file which is present inside my running docker …


    Read More
  • How to fix Error starting docker service Unit not found?

    calendarJul 24, 2021 · 4 min read  ·
    Last Modified : Jul 24, 2021
    Share on: twitterfacebooklinkedincopy
    Author :  Rahul Wagh
    How to fix Error starting docker service Unit not found?

    In this blog post, we will look at the different ways to fix the Error starting docker service Unit not found. I faced this issue while I was trying to set up Kubernetes cluster on CentOS 8. As Kubernetes is a container orchestration tool and it is used for managing container images, so I had to install Docker before …


    Read More
  • How to remove old, unused images of Docker?

    calendarJul 24, 2021 · 6 min read  ·
    Last Modified : Jul 24, 2021
    Share on: twitterfacebooklinkedincopy
    Author :  Rahul Wagh
    How to remove old, unused images of Docker?

    There are times in a project where you have been working for quite a long time and you create and tag docker images on daily basis but after some time it is generally observed that we tend to forget how many docker images we have build and tagged. I do not see a problem in building and tagging a new docker image number …


    Read More
    • ««
    • «
    • 1
    • 2
    • 3
    • »
    • »»

Categories

TERRAFORM 63 DOCKER 28 KUBERNETES 26 AWS 15 ANSIBLE 11 HELM-CHART 11 BLOGGING 6 SSL 6 SPRING-BOOT 5 QUARKUS 4 GITHUB 3 KUBESPRAY 3 PROMETHEUS-GRAFANA 3 VAGRANT 3
All Categories

ANSIBLE11 AWS15 AZURE2 BLOGGING6 DEVOPS2 DOCKER28 GITHUB3 GRADLE1 HADOOP1 HELM-CHART11 HIBERNATE1 JENKINS2 KUBERNETES26 KUBESPRAY3 LINUX-COMMANDS1 NGINX2 PROMETHEUS-GRAFANA3 QUARKUS4 SPRING-BOOT5 SSL6 TERRAFORM63 VAGRANT3
[A~Z][0~9]

Series

TERRAFORM 61 DOCKER 28 KUBERNETES 27 ANSIBLE 11 HELM-CHART 11 AWS 4 AZURE 2 JENKINS 2 DEVOPS 1 LINUX-COMMANDS 1

Tags

KUBERNETES 18 HELM-CHART 10 BLOGGING 4 QUARKUS 4 DOCKER 3 GITHUB 3 SSL 3 KUBESPRAY 2 SPRING-BOOT 2 ANSIBLE 1 HADOOP 1 INDEX 1 NGINX 1 TERRAFORM 1

Recent Posts

  • AI Caught My Cloud Failure Before I Did
  • AWS API Gateway from Beginner to Expert ?
  • Azure Function App
  • Azure Virtual Machine Course
  • Learn AWS S3 ?
  • Ansible Handlers Explained Real-World Use Cases & Examples test
  • Securing Sensitive Data in Terraform
  • Boost Your AWS Security with Terraform : A Step-by-Step Guide

Rahul Wagh

Jhooq
Its all about Open Source and DevOps, here I talk about Kubernetes, Docker, Java, Spring boot and practices.
Read More


Copyright © 2019–2020, Jhooq; all rights reserved.

Copyright  COPYRIGHT © 2019–2020, JHOOQ; ALL RIGHTS RESERVED.. All Rights Reserved

to-top