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.55 / day

Message History

Aws cli

If want to create resource first it will start with aws

aws [options] <command> <subcommand> [parameters] options s3 s3api s3control s3files s3outposts s3tables s3vectors

ex:

aws [options] <command> <subcommand> [parameters] aws s3api create-bucket --bucket amzn-qt-demo-multicloud --region us-east-1 --debug aws s3 mb s3://amzn-s...

Read full story
create docker file (file name Dockerfile) FROM nginx:latest COPY ./2168_sweet_bakery/* /usr/share/nginx/html/ build image default file name (Dockerfile)

docker build -t sweet_bakery:1.0.0 .

build image different file name

docker build -t sweet_bakery:1.1.0 –file sweet_bakery.Dockerfile . docker build -t sweet_bakery:1.1.0 -f sweet_bakery.Dockerfile .

docker run...


Read full story
two Ways to create docker images

interactively : manually run container and then save as an image

Dockerfile (instructions-based): build image based instructions (automatically create image)

interactively method:

first need run container docker run -d --name web1 -p 80:80 nginx download sample website mkdir website cd website wget https://www.toop...

Read full story
Azure storage we need storage account to create any storage type storage account need resource group resource group need name, location & sub create resource group, storage account storage account name will gobally unique Types of storage

blob storage

page blob (images, videos, docus, zip files , static website) container images append blob (log storage , appe...

Read full story
Run container in Docker host # pull image (download image to local) docker pull httpd:latest To run a container we need a port

Types of ports in docker:

Static port -p <port to access>:<application port>

Ex: apache application port 80

-p 8080:80 docker images i Info → U In Use IMAGE ID DISK USAGE CONTENT SIZE EXTRA demo-ubuntu:1.0 2b4a4d589d5e 15...


Read full story