AAAAkash Achankuttyinakashak14.hashnode.dev路Jan 24, 2024 路 1 min readDocker composeWhy use docker compose ? Easy set up : it simplifies setting up and running multi-container application with single config consistent development : use it for consistent development env 馃憠馃徎 Docker Version 3 In docker compose v3, every containe...00
AAAAkash Achankuttyinakashak14.hashnode.dev路Jan 22, 2024 路 2 min readDocker imageCreate a Dockerfile # Always start with baseimage -> ubuntu FROM ubuntu RUN apt update -y RUN apt install nginx -y VOLUME [ "/var/www/html" ] # Information only LABEL version="1" description="This is alpha image" RUN apt install...00
AAAAkash Achankuttyinakashak14.hashnode.dev路Jan 20, 2024 路 2 min readDocker BasicDocker utilizes the host operating system's kernel to provide lightweight containerization Docker is used for containerization, which involves packaging an application and its dependencies into a container Basic commands Images docker imagesList ...00
AAAAkash Achankuttyinakashak14.hashnode.dev路Jan 1, 2024 路 2 min readTmux - Terminal multiplexertmux is a terminal multiplexer for Unix-like operating systems. It allows you to run multiple terminal sessions in a single window, split the terminal into panes, and detach and reattach sessions, providing a flexible and efficient way to manage term...00