Please turn JavaScript on
Direct DevOps from Quality Thought icon

Direct DevOps from Quality Thought

Subscribe to Direct DevOps from Quality Thought’s news feed.

Click on “Follow” and decide if you want to get news from Direct DevOps from Quality Thought via RSS, as email newsletter, via mobile or on your personal news page.

Subscription to Direct DevOps from Quality Thought comes without risk as you can unsubscribe instantly at any time.

You can also filter the feed to your needs via topics and keywords so that you only receive the news from Direct DevOps from Quality Thought which you are really interested in. Click on the blue “Filter” button below to get started.

Website title: Direct DevOps from Quality Thought

Is this your feed? Claim it!

Publisher:  Unclaimed!
Message frequency:  1.1 / day

Message History

Docker networking docker network subcommand has options to deal with docker network docker has following network drivers

host bridge overlay none The default network driver is bridge, i.e. when you create containers the contianer will be part of default docker network The default bridge network allows containers to communicate over ip but name resolution cannot be...

Read full story
Standards in Containers OCI: Refer Here

OCI Image spec OCI Runtime spec Network Standard:

CNM: Docker follows CNM CNI: kubernetes follows CNI Problems Docker used the linux kernel to create containers: To solve this docker create a project called as libcontainer. Doc...

Read full story
nopcommerce

ref

Install on ubuntu sudo add-apt-repository ppa:dotnet/backports sudo apt-get update sudo apt-get install -y aspnetcore-runtime-9.0 # validate dotnet --list-runtimes sudo mkdir -p /var/www/n...

Read full story
Docker Multi-Stage Builds Multi-Stage Build

A multi-stage build uses multiple FROM instructions in a single Dockerfile. Each FROM begins a new stage — an isolated build environment. You selectively copy only the artifacts you need from one stage into the next.

Dockerfile with multiple FROM statements │ ▼ ┌──────────────...

Read full story
1. Basic Commands ls # List files ls -l # Long format ls -a # Show hidden files ls -lh # Human-readable sizes ls -lt # Sort by modified time pwd # Print working directory cd /path/to/dir # Change directory cd .. # Go up one level cd ~ # Go to home directory cd - # Go to previous directory mkdir dirname # Create directory mkdir -p parent/child # Create nested directories touch...

Read full story