Search posts, tags and authors

Docker

4 posts from Docker See another: Devops, IT, HowTo
Common Docker commands
December 8, 2024 by kiril-urbonas in Docker

Common Docker commands

Docker is an open-source platform designed to streamline the development, deployment, and running of applications by using containerization. Containers are lightweight, portable, and isolated environments that bundle an application along with its dependencies, ensuring consistency across development, testing, and production environments. 1. Basic Docker Commands * docker version: Displays the Docker...

How to install Docker on Ubuntu
July 21, 2024 by kiril-urbonas in Docker

How to install Docker on Ubuntu

Docker is an open-source platform that enables developers to automate the deployment, scaling, and management of applications within lightweight, portable containers. To install docker on ubuntu: 1. Set up Docker's apt repository. # Add Docker's official GPG key: sudo apt-get update sudo apt-get install ca-certificates curl sudo...

Top Docker Commands and Their Usage
July 16, 2024 by kiril-urbonas in Docker

Top Docker Commands and Their Usage

Docker has revolutionized how we build, ship, and run applications. Mastering Docker commands is essential for developers and DevOps professionals. Here’s a rundown of the most important Docker commands and how to use them effectively. 1. docker run The docker run command creates and starts a container from a...

Spotlight Docker