1.โ โ โ
top โ /โ htop โ : Monitor real-time system resource usage (CPU, memory, etc.).2.โ โ โ
ps aux โ : Display currently running processes.3.โ โ โ
free -h โ : Check memory usage.4.โ โ โ
df -h โ : View disk space usage.5.โ โ โ
du -sh /path/to/directory โ : Check the size of a specific directory.6.โ โ โ
uptime โ : See how long the system has been running and load average.7.โ
โ โ iostat โ : Monitor system input/output device loading.8.โ โ โ
sar โ : Collect, report, or save system activity information.1.โ
โ โ ifconfig โ /โ ip a โ : Display network interfaces and IP addresses.2.โ โ โ
ping <host> โ : Check connectivity to a remote host.3.โ โ โ
traceroute <host> โ : Trace the path packets take to a network host.4.โ
โ โ netstat -tuln โ /โ ss -tuln โ : List open ports and services.5.โ โ โ
nslookup <domain> โ /โ dig <domain> โ : Query DNS records.6.โ โ โ
wget <url> โ : Download files from the web.1.โ โ โ
journalctl โ : View system logs (Linux).2.โ โ โ
syslog-ng โ : Configure system logging.3.โ โ โ
tcpdump โ : Capture network traffic.4.โ โ โ
strace โ : Debug system calls.5.โ โ โ
lsof โ : List open files and network connections.1.โ โ Identify symptoms.
2.โ โ Gather logs and system info.
3.โ โ Analyze data.
4.โ โ Isolate issues.
5.โ โ Apply fixes.
1.โ โ Regularly monitor system performance.
2.โ โ Implement logging and alerting.
3.โ โ Document troubleshooting processes.
4.โ โ Continuously learn new tools and techniques.
Please open Telegram to view this post
VIEW IN TELEGRAM
๐1
Dive into the world of AWS DevOps and transform your cloud infrastructure with cutting-edge tools and practices. Here's what you need to know:
1. AWS CodePipeline: Automate your release pipelines with ease.
2. AWS CodeBuild: Scalable build service to compile your source code, run tests, and produce software packages.
3. AWS CodeDeploy: Automate code deployments to any instance, be it EC2 or on-premises.
4. AWS CodeCommit: Secure and scalable source control service to host Git repositories.
- Amazon CloudWatch: Monitor and log your AWS resources and applications.
- AWS X-Ray: Trace and debug applications built using a microservices architecture.
- AWS Identity and Access Management (IAM): Fine-grained access control for users and services.
- AWS Key Management Service (KMS): Create and manage cryptographic keys securely.
- Integrate with Jenkins, GitHub Actions, or GitLab CI for streamlined CI/CD workflows.
- AWS Elastic Beanstalk: Quickly deploy and manage applications in the AWS Cloud without worrying about the infrastructure.
- AWS Auto Scaling: Ensure your application scales automatically to meet demand.
- AWS CloudFormation: Model and set up your AWS resources using code.
- Utilize AWS Global Infrastructure for deploying your applications across multiple regions.
Stay tuned for more insights and tips on leveraging AWS DevOps to boost your cloud efficiency and productivity. Happy DevOps-ing!๐ค ๐ป
Please open Telegram to view this post
VIEW IN TELEGRAM
โค2
1728623046131.gif
833.8 KB
- ๐ท๐๐๐: Send your local commits to the remote repo.
- ๐ท๐๐๐: Grab the latest changes from remote. It's actually fetch + merge in one go.
- ๐ญ๐๐๐๐: Download changes, but don't apply them yet.
- ๐ด๐๐๐๐: Combine those fetched changes with your work.
Please open Telegram to view this post
VIEW IN TELEGRAM
This media is not supported in your browser
VIEW IN TELEGRAM
The diagram above illustrates the typical workflow.
Please open Telegram to view this post
VIEW IN TELEGRAM
๐3
Please open Telegram to view this post
VIEW IN TELEGRAM
๐๐๐ ๐๐๐๐ ๐๐๐๐, ๐ฆ๐๐ข ๐๐๐ ๐โ๐๐๐ ๐กโ๐๐ ๐๐๐๐:
Please open Telegram to view this post
VIEW IN TELEGRAM
Devcloudninjas
100 Terraform Basic To Advanced Interview Questions & Answers
Terraform is an open-source infrastructure as code software tool created by HashiCorp. It allows users to define and provision infrastructure using a high-level configuration language known as HashiCorp Configuration Language (HCL).
Boost your CI/CD workflows with these must-know integration projects. Enhance automation, streamline processes, and deliver quality software faster.
1. Jenkins + GitHub - Integrate Jenkins with GitHub for seamless CI/CD, automating builds and tests on every commit.
2. GitLab CI/CD + Kubernetes - Use GitLabโs CI/CD pipelines to deploy directly to Kubernetes clusters.
3. CircleCI + Docker - Combine CircleCIโs speed with Dockerโs containerization for efficient, repeatable builds.
4. Travis CI + Heroku - Simplify deployment by integrating Travis CI with Heroku for quick app releases.
5. Bamboo + AWS - Deploy and scale applications using Bamboo integrated with AWS services.
6. TeamCity + Azure DevOps - Enhance your CI/CD pipelines with TeamCity integrated with Azure DevOps.
7. Drone + Gitea - A seamless combination for self-hosted CI/CD using Drone with the Gitea Git service.
8. Argo CD + Helm - Manage Kubernetes deployments using Argo CD integrated with Helm charts.
9. Spinnaker + Google Cloud - Deliver continuous deployments across multiple cloud environments with Spinnaker and Google Cloud.
10. Concourse + Vault - Secure your CI/CD pipelines by integrating Concourse with HashiCorp Vault.
11. Tekton + OpenShift - Use Tekton pipelines for CI/CD on Red Hat OpenShift to build, test, and deploy applications.
12. Azure Pipelines + Terraform - Automate infrastructure as code with Azure Pipelines and Terraform.
13. Bitbucket Pipelines + Jira - Track and manage your CI/CD workflows efficiently with Bitbucket Pipelines and Jira.
14. GoCD + ELK Stack - Monitor and analyze your CI/CD pipelines with GoCD integrated with the ELK (Elasticsearch, Logstash, Kibana) stack.
15. Buddy + Slack - Get real-time notifications and updates from Buddy CI/CD directly in your Slack channels.
Please open Telegram to view this post
VIEW IN TELEGRAM
๐2
# Install AWS CLI
pip install awscli
# Configure AWS CLI
aws configure
# List IAM users
aws iam list-users
# Create IAM user
aws iam create-user --user-name <username>
# Attach policy to IAM user
aws iam attach-user-policy --user-name <username> --policy-arn arn:aws:iam::aws:policy/<policy-name>
# List all EC2 instances
aws ec2 describe-instances
# Start an EC2 instance
aws ec2 start-instances --instance-ids <instance-id>
# Stop an EC2 instance
aws ec2 stop-instances --instance-ids <instance-id>
# List all S3 buckets
aws s3 ls
# Upload file to S3 bucket
aws s3 cp <file-path> s3://<bucket-name>/<file-key>
# Download file from S3 bucket
aws s3 cp s3://<bucket-name>/<file-key> <file-path>
# List RDS instances
aws rds describe-db-instances
# Start RDS instance
aws rds start-db-instance --db-instance-identifier <instance-id>
# Stop RDS instance
aws rds stop-db-instance --db-instance-identifier <instance-id>
# List CloudWatch log groups
aws logs describe-log-groups
# Create CloudWatch log group
aws logs create-log-group --log-group-name <log-group-name>
# List Elastic Beanstalk environments
aws elasticbeanstalk describe-environments
# Update environment to new version
aws elasticbeanstalk update-environment --environment-name <env-name> --version-label <version-label>
# List CloudFormation stacks
aws cloudformation describe-stacks
# Create CloudFormation stack
aws cloudformation create-stack --stack-name <stack-name> --template-body file://<template-file>
# Update CloudFormation stack
aws cloudformation update-stack --stack-name <stack-name> --template-body file://<template-file>
Please open Telegram to view this post
VIEW IN TELEGRAM
๐3
Are you a fresher with zero knowledge of DevOps? Don't worry! Our comprehensive guide, Learn DevOps with 0 Knowledge for Freshers, is here to help you get started on the right path.
- Understanding the basics of DevOps
- Foundation skills: programming, OS, networking
- Mastering CI/CD with Jenkins and GitLab
- Configuration management with Ansible and Puppet
- Containerization and orchestration with Docker and Kubernetes
- Exploring cloud platforms: AWS, Azure, GCP
- Implementing Infrastructure as Code with Terraform
- Monitoring and logging with Prometheus and ELK Stack
- Hands-on projects and continuous learning tips
Start your DevOps journey today and become a proficient DevOps engineer!๐
Please open Telegram to view this post
VIEW IN TELEGRAM
DEV Community
DevOps from 0 to Hero - for Freshers
Introduction DevOps is a transformative culture and set of practices that bring together...
DevCloud Ninjas Tech Community
Photo
1. What is AWS?
2. What are the key services provided by AWS?
3. What is EC2 in AWS?
4. What is an S3 bucket?
5. Explain the difference between S3 and EBS.
6. What is IAM in AWS?
7. How does AWS VPC work?
8. What are Security Groups and how do they work?
9. What is an AWS region?
10. What are Availability Zones in AWS?
11. What is Auto Scaling?
12. What is Elastic Load Balancing?
13. What is Route 53?
14. Explain the difference between a public and private subnet.
15. What is CloudFormation?
16. What is AWS Lambda?
17. What is Amazon RDS?
18. How do you monitor AWS resources?
19. What is Amazon DynamoDB?
20. What is AWS Elastic Beanstalk?
21. What is Amazon CloudFront?
22. Explain Amazon SNS.
23. What is the difference between RDS and DynamoDB?
24. What are EIPs (Elastic IPs)?
25. How does AWS CloudTrail work?
26. What is Amazon CloudWatch?
27. What is the AWS Free Tier?
28. What is a NAT Gateway?
29. Explain the Shared Responsibility Model in AWS.
30. What are AWS Tags and why are they used?
31. How do you secure data at rest and in transit in AWS?
32. Explain the difference between AWS S3 Standard and S3 Glacier.
33. How does AWS S3 versioning work?
34. What is AWS Elasticache?
35. Explain the concept of a bastion host.
36. How do you implement high availability in AWS?
37. What is AWS Direct Connect?
38. What are AWS Managed Services?
39. What is AWS Config?
40. How do you set up cross-region replication in S3?
41. Explain AWS KMS.
42. What is Amazon Redshift?
43. How does AWS handle data encryption?
44. What is Amazon EFS?
45. Explain AWS Elastic Transcoder.
46. What is AWS CodePipeline?
47. How do you implement disaster recovery in AWS?
48. What is AWS OpsWorks?
49. What is AWS Step Functions?
50. Explain the difference between Spot Instances and Reserved Instances.
51. What is Amazon SWF?
52. How do you secure an AWS API Gateway?
53. What are Placement Groups in AWS?
54. What is AWS CodeDeploy?
55. How does Amazon Athena work?
56. What is AWS Snowball?
57. Explain the concept of AWS CloudHSM.
58. What is AWS X-Ray?
59. How do you manage secrets in AWS?
60. Explain AWS Systems Manager.
61. What is the difference between horizontal and vertical scaling in AWS?
62. How does AWS Lambda handle cold starts?
63. What is a VPC peering connection and how does it work?
64. Explain the use of AWS Transit Gateway.
65. What is Amazon EKS?
66. How do you manage multi-account AWS environments?
67. Explain the concept of serverless architecture in AWS.
68. What are AWS Organizations?
69. How do you optimize costs in AWS?
70. What are the best practices for securing an AWS environment?
Please open Telegram to view this post
VIEW IN TELEGRAM
๐3โค1๐ฅ1
Thanks for Sharing valuable information.
#freelearning #freeknowledge #devops #devopscommunity
Please open Telegram to view this post
VIEW IN TELEGRAM
Linkedin
Project 1 - DevOps (Implementation) | Chetan R | 76 comments
Project 1: Devops (Step-by-step Implementation)
I have posted the step-by-step implementation of the DevOps project that I posted earlier.
Blog Link: https://lnkd.in/gMVPA-cm
If you found this article helpful, follow me and share the article with yourโฆ
I have posted the step-by-step implementation of the DevOps project that I posted earlier.
Blog Link: https://lnkd.in/gMVPA-cm
If you found this article helpful, follow me and share the article with yourโฆ
โค1๐1
Hey everyone!
1. Introduction to Azure DevOps
- Understanding DevOps and its importance
- Overview of Azure DevOps services
- Setting up your Azure DevOps environment
2. Azure Boards and Agile Project Management
- Managing work items with Azure Boards
- Implementing Agile, Scrum, and Kanban processes
- Customizing dashboards and queries
3. Mastering Git and Source Control
- Introduction to Git and Azure Repos
- Branching, merging, and pull requests
- Managing repositories and code reviews
4. Build and Release Pipelines
- Creating and configuring build pipelines
- Continuous Integration (CI) and Continuous Deployment (CD)
- Using Azure Pipelines for automated deployments
5. Azure Artifacts and Test Plans
- Managing packages with Azure Artifacts
- Setting up and running test plans
- Ensuring code quality and compliance
- Hands-On Demos: Each article includes practical demos to help you apply what you learn.
- Real-World Projects: Work on real projects to gain practical experience.
- Community Support: Join our community discussions and collaborate with fellow learners.
Don't miss out on this opportunity to become an Azure DevOps expert! Whether you're a beginner or looking to enhance your skills, this series has something for everyone.
Please open Telegram to view this post
VIEW IN TELEGRAM
DEV Community
Azure DevOps Zero to Hero Series
Introduction Welcome to the Azure DevOps Zero to Hero Series! This comprehensive series is...
When Containers Talk: Decoding the Secret Language of Docker Networking.
Please open Telegram to view this post
VIEW IN TELEGRAM
โค1
๐ฐ๐ ๐๐๐'๐๐ ๐๐๐๐๐๐ ๐๐๐๐๐ ๐๐๐ ๐๐๐๐๐๐๐๐ ๐๐๐๐๐๐๐๐๐๐๐๐๐๐๐๐ ๐๐ ๐๐๐๐๐ ๐๐๐๐๐, ๐
๐๐๐๐๐๐๐
๐๐๐๐๐๐๐๐๐๐๐๐ ๐๐๐ ๐๐๐๐๐๐
๐๐
๐๐๐๐๐
1. ๐๐๐ฏ๐๐ฉ๐ฌ ๐๐ง๐ ๐ข๐ง๐๐๐ซ
Bridges the gap between development and operations teams.
Automates build, test, and deployment processes.
Implements continuous integration and continuous delivery (CI/CD) pipelines.
Manages infrastructure as code (IaC) using tools like Terraform or Ansible.
Ensures system availability, performance, and scalability.
2. ๐๐๐ ๐๐ง๐ ๐ข๐ง๐๐๐ซ (๐๐ข๐ญ๐ ๐๐๐ฅ๐ข๐๐๐ข๐ฅ๐ข๐ญ๐ฒ ๐๐ง๐ ๐ข๐ง๐๐๐ซ)
Focuses on reliability and performance of systems.
Builds and maintains scalable and efficient infrastructure.
Automates routine tasks and creates self-service tools.
Defines and tracks service level objectives (SLOs) and error budgets.
Handles incidents and performs root cause analysis.
3. ๐๐ฅ๐จ๐ฎ๐ ๐๐ง๐ ๐ข๐ง๐๐๐ซ
Manages and maintains cloud infrastructure (AWS, Azure, GCP).
Optimizes cloud costs and resource utilization.
Ensures cloud security and compliance.
Migrates workloads to the cloud.
Automates cloud provisioning and management.
4. ๐๐ฅ๐๐ญ๐๐จ๐ซ๐ฆ ๐๐ง๐ ๐ข๐ง๐๐๐ซ
Builds and maintains the platform used by development teams.
Provides self-service tools and APIs for developers.
Ensures platform stability, performance, and scalability.
Collaborates with developers and infrastructure teams.
Automates platform provisioning and management.
5. ๐๐๐ฏ๐๐๐๐๐ฉ๐ฌ ๐๐ง๐ ๐ข๐ง๐๐๐ซ
Integrates security into the DevOps pipeline.
Conducts security assessments and vulnerability scanning.
Implements security controls and best practices.
Develops secure coding standards and guidelines.
๐ฑ ๐
๐จ๐ฅ๐ฅ๐จ๐ฐ @devcloudninjas ๐๐จ๐ซ ๐ฆ๐จ๐ซ๐ ๐ฌ๐ฎ๐๐ก ๐๐จ๐ง๐ญ๐๐ง๐ญ ๐๐ซ๐จ๐ฎ๐ง๐ ๐๐ฅ๐จ๐ฎ๐ & ๐๐๐ฏ๐๐ฉ๐ฌ!!! // ๐๐จ๐ข๐ง ๐๐จ๐ซ ๐๐๐ฏ๐๐ฉ๐ฌ ๐๐๐๐ฌ: @devcloudninjas
1. ๐๐๐ฏ๐๐ฉ๐ฌ ๐๐ง๐ ๐ข๐ง๐๐๐ซ
Bridges the gap between development and operations teams.
Automates build, test, and deployment processes.
Implements continuous integration and continuous delivery (CI/CD) pipelines.
Manages infrastructure as code (IaC) using tools like Terraform or Ansible.
Ensures system availability, performance, and scalability.
2. ๐๐๐ ๐๐ง๐ ๐ข๐ง๐๐๐ซ (๐๐ข๐ญ๐ ๐๐๐ฅ๐ข๐๐๐ข๐ฅ๐ข๐ญ๐ฒ ๐๐ง๐ ๐ข๐ง๐๐๐ซ)
Focuses on reliability and performance of systems.
Builds and maintains scalable and efficient infrastructure.
Automates routine tasks and creates self-service tools.
Defines and tracks service level objectives (SLOs) and error budgets.
Handles incidents and performs root cause analysis.
3. ๐๐ฅ๐จ๐ฎ๐ ๐๐ง๐ ๐ข๐ง๐๐๐ซ
Manages and maintains cloud infrastructure (AWS, Azure, GCP).
Optimizes cloud costs and resource utilization.
Ensures cloud security and compliance.
Migrates workloads to the cloud.
Automates cloud provisioning and management.
4. ๐๐ฅ๐๐ญ๐๐จ๐ซ๐ฆ ๐๐ง๐ ๐ข๐ง๐๐๐ซ
Builds and maintains the platform used by development teams.
Provides self-service tools and APIs for developers.
Ensures platform stability, performance, and scalability.
Collaborates with developers and infrastructure teams.
Automates platform provisioning and management.
5. ๐๐๐ฏ๐๐๐๐๐ฉ๐ฌ ๐๐ง๐ ๐ข๐ง๐๐๐ซ
Integrates security into the DevOps pipeline.
Conducts security assessments and vulnerability scanning.
Implements security controls and best practices.
Develops secure coding standards and guidelines.
Please open Telegram to view this post
VIEW IN TELEGRAM
๐3
This media is not supported in your browser
VIEW IN TELEGRAM
Imagine this: It's your first day on a new project, and you're tasked with deploying an app on a Kubernetes cluster. You feel a mix of excitement and a bit of nervousness. Your mentor leans over and says, "Let's connect to our Kubernetes cluster using kubectl!"
Here's how we did it, step-by-step:
kubectl was installed. If you havenโt already, download and install it from the official Kubernetes site.
Next, we set up the kubeconfig file to authenticate and point kubectl to our cluster. We got the config file from our cluster admin and saved it to ~/.kube/config.
Please open Telegram to view this post
VIEW IN TELEGRAM
๐1
Each technique enables organizations to optimize Kubernetes usage and minimize expenses
๐ญ. ๐ฅ๐ถ๐ด๐ต๐-๐๐ถ๐๐ถ๐ป๐ด ๐ฟ๐ฒ๐๐ผ๐๐ฟ๐ฐ๐ฒ๐:
Analyze app resource usage, adjust CPU/memory as needed. Avoid over-provisioning to save costs
๐ฎ. ๐๐ณ๐ณ๐ถ๐ฐ๐ถ๐ฒ๐ป๐ ๐ก๐ผ๐ฑ & ๐ฃ๐ผ๐ฑ ๐๐๐๐ผ ๐ฆ๐ฐ๐ฎ๐น๐ถ๐ป๐ด:
Enable cluster auto-scaling and use Horizontal Pod Autoscaler (HPA) and Vertical Pod Autoscaler (VPA) to add or remove nodes / pods based on resource utilization, reducing idle costs
๐ฏ. ๐ฃ๐ผ๐ฑ ๐๐ถ๐๐ฟ๐๐ฝ๐๐ถ๐ผ๐ป ๐๐๐ฑ๐ด๐ฒ๐ (๐ฃ๐๐):
Set up PDBs to control how many pods of a specific deployment or replica set can be down simultaneously during disruptions, ensuring high availability without overprovisioning
๐ฐ. ๐ก๐ผ๐ฑ๐ฒ ๐ง๐ฎ๐ถ๐ป๐๐ถ๐ป๐ด ๐ฎ๐ป๐ฑ ๐ง๐ผ๐น๐ฒ๐ฟ๐ฎ๐๐ถ๐ผ๐ป:
Taint nodes for workload-specific delays, prioritize critical tasks on untainted nodes, and use cheaper tainted nodes for less critical tasks
๐ฑ. ๐๐ผ๐ป๐๐ฎ๐ถ๐ป๐ฒ๐ฟ ๐ฅ๐ฒ๐ด๐ถ๐๐๐ฟ๐ & ๐๐บ๐ฎ๐ด๐ฒ ๐ข๐ฝ๐๐ถ๐บ๐ถ๐๐ฎ๐๐ถ๐ผ๐ป:
Use cost-efficient container registry, follow image best practices (e.g., multi-stage builds) for smaller images and reduced pull times & storage costs
๐ฒ. ๐ฆ๐ฝ๐ผ๐ ๐ถ๐ป๐๐๐ฎ๐ป๐ฐ๐ฒ๐:
Utilize spot instances for non-critical tasks; they're cheaper but can be terminated quickly. Ideal for stateless, fault-tolerant apps
Please open Telegram to view this post
VIEW IN TELEGRAM
๐1
5 real-world DevOps projects that can add to your resume
Please open Telegram to view this post
VIEW IN TELEGRAM
lnkd.in
LinkedIn
This link will take you to a page thatโs not on LinkedIn
๐๐ซ๐ซ๐จ๐ซ:
๐๐จ๐ฅ๐ฎ๐ญ๐ข๐จ๐ง:
๐๐ซ๐ซ๐จ๐ซ:
๐๐จ๐ฅ๐ฎ๐ญ๐ข๐จ๐ง:
๐๐ซ๐ซ๐จ๐ซ:
๐๐จ๐ฅ๐ฎ๐ญ๐ข๐จ๐ง:
๐๐ซ๐ซ๐จ๐ซ: A program won't run because it's missing dependencies.
๐๐จ๐ฅ๐ฎ๐ญ๐ข๐จ๐ง: Use your package manager (e.g., apt, yum, dnf) to install the missing libraries or packages.
๐๐ซ๐ซ๐จ๐ซ: Network connectivity problems, such as no internet connection.
๐๐จ๐ฅ๐ฎ๐ญ๐ข๐จ๐ง: Check your network settings, restart the network service (๐ฌ๐ฒ๐ฌ๐ญ๐๐ฆ๐๐ญ๐ฅ ๐ซ๐๐ฌ๐ญ๐๐ซ๐ญ ๐๐๐ญ๐ฐ๐จ๐ซ๐ค๐๐๐ง๐๐ ๐๐ซ), or troubleshoot using tools like ๐ฉ๐ข๐ง๐ , ๐ข๐๐๐จ๐ง๐๐ข๐ , ๐๐ง๐ ๐ง๐ฆ๐๐ฅ๐ข.
๐๐ซ๐ซ๐จ๐ซ: The filesystem reports errors, or you can't access files.
๐๐จ๐ฅ๐ฎ๐ญ๐ข๐จ๐ง: Use filesystem repair tools like ๐๐ฌ๐๐ค to fix errors.
๐๐ซ๐ซ๐จ๐ซ: A process is stuck and not responding.
๐๐จ๐ฅ๐ฎ๐ญ๐ข๐จ๐ง: Use the ๐ค๐ข๐ฅ๐ฅ command to terminate the process.
๐๐ซ๐ซ๐จ๐ซ: Your system is slow and unresponsive.
๐๐จ๐ฅ๐ฎ๐ญ๐ข๐จ๐ง: Identify resource-hungry processes with commands like ๐ญ๐จ๐ฉ ๐จ๐ซ ๐ก๐ญ๐จ๐ฉ, and consider adding more ๐๐๐ or upgrading your ๐ก๐๐ซ๐๐ฐ๐๐ซ๐.
๐๐ซ๐ซ๐จ๐ซ: When you run out of available ๐ข๐ง๐จ๐๐๐ฌ on a file system.
๐๐จ๐ฅ๐ฎ๐ญ๐ข๐จ๐ง: Delete unnecessary files and directories or reformat the partition with a larger ๐ข๐ง๐จ๐๐ count.
๐๐ซ๐ซ๐จ๐ซ:
๐๐จ๐ฅ๐ฎ๐ญ๐ข๐จ๐ง: Review the command's syntax, consult the manual pages (use ๐ฆ๐๐ง), or check online resources for the correct usage.
๐๐ซ๐ซ๐จ๐ซ:
๐๐จ๐ฅ๐ฎ๐ญ๐ข๐จ๐ง:
Please open Telegram to view this post
VIEW IN TELEGRAM
๐2
-
docker --version: Check Docker version.-
docker info: Get system-wide information.-
docker help: Get help with Docker commands.-
docker run [OPTIONS] IMAGE [COMMAND] [ARG...]: Run a container.-
docker ps: List running containers.-
docker ps -a: List all containers.-
docker stop CONTAINER: Stop a running container.-
docker start CONTAINER: Start a stopped container.-
docker restart CONTAINER: Restart a container.-
docker rm CONTAINER: Remove a container.-
docker kill CONTAINER: Kill a running container.-
docker images: List images.-
docker pull IMAGE: Pull an image from a registry.-
docker build -t TAG .: Build an image from a Dockerfile.-
docker rmi IMAGE: Remove an image.-
docker network ls: List networks.-
docker network create NETWORK: Create a network.-
docker network connect NETWORK CONTAINER: Connect a container to a network.-
docker network disconnect NETWORK CONTAINER: Disconnect a container from a network.-
docker volume ls: List volumes.-
docker volume create VOLUME: Create a volume.-
docker volume rm VOLUME: Remove a volume.-
docker-compose up: Start services defined in a Compose file.-
docker-compose down: Stop services defined in a Compose file.-
docker-compose build: Build or rebuild services.-
docker-compose logs: View output from services.-
docker inspect CONTAINER/IMAGE: Display detailed information.-
docker logs CONTAINER: Fetch the logs of a container.-
docker exec -it CONTAINER bash: Access a running container.Stay efficient and automate smartly!
Please open Telegram to view this post
VIEW IN TELEGRAM
๐1