• chevron_right

      Install Latest Docker on Debian Linux

      pubsub.slavino.sk / linuxhandbook.com · Monday, 19 December, 2022 - 03:49 edit

    Docker is available in Debian repositories but it is usually the older version. Here's how you can install the latest Docker versions in Debian.

    Značky: #Linux, #Docker

    • chevron_right

      Un interface pour gérer Docker et Docker Compose dans votre terminal

      news.movim.eu / Korben · Monday, 28 November, 2022 - 08:00 · 1 minute

    Je suis un grand fan de Docker et je suis certain que vous aussi. Je l’utilise essentiellement en ligne de commande et même si je connais les commandes de base pour gérer des images, des conteneurs et les lancer, quand on doit faire ça souvent, c’est vite relou.

    Je suis également un grand fan de Docker Compose. J’ai d’ailleurs fait plusieurs tuto à ce sujet sur ma chaine YouTube . Toutefois, je pense qu’on sera d’accord, une petite interface pour gérer tout ça, ce n’est pas du luxe.

    Alors oui, y’a bien Docker Desktop, mais je déteste ce truc lourdingue. Non, aujourd’hui, je vous propose plutôt de jeter un oeil à LazyDocker , une interface développée en Go, qui va vous permettre de gérer comme il se doit vos conteneurs et vos images, ainsi que visualiser vos logs et les stats de votre système à l’aide de graphs.

    Tout le Dashboard est entièrement paramétrable via un fichier de config pour que vous ayez l’essentiel sous les yeux. Cela vous permettra de comprendre rapidement ce qui se passe chez vous avec Docker sans avoir à mémoriser les commandes et les alias de Docker et Docker Compose et de tout gérer au même endroit.

    Super pratique !

    • chevron_right

      How to ensure that HAProxy keep up with Docker name resolution

      pubsub.slavino.sk / sleeplessbestie · Wednesday, 2 November, 2022 - 12:00 edit

    Ensure that HAProxy keep up with Docker name resolution. HAProxy works great as a docker container. $ docker exec haproxy cat /usr/local/etc/haproxy/haproxy.cfg global stats socket /var/run/api.sock user haproxy group haproxy mode 660 level admin expose-fd listeners log stdout format raw local0 info defaults mode http timeout client 25s timeout connect 5s timeout server 10000s timeout […]

    Značky: #Linux, #DevOps, #HAProxy, #Docker

    • chevron_right

      Removing ANSI Colours from Log Output

      pubsub.slavino.sk / warlord0blog · Friday, 5 August, 2022 - 16:16 edit

    Despite using the --no-color switch for docker logs, I still get colour output. This is frustrating as I just want to throw the output into a file for analysis and the colour codes just add interference, eg. Pipe the output through sed like this and get clean output.

    Značky: #Linux, #Docker

    • chevron_right

      Useful Examples of the Docker ps Command

      pubsub.slavino.sk / linuxhandbook.com · Monday, 9 May, 2022 - 07:42 edit

    The most common Docker command is also a versatile command. Learn a few usages of the docker ps command.

    Značky: #Linux, #Docker

    • chevron_right

      How to use multi-stage build to compile an application

      pubsub.slavino.sk / sleeplessbestie · Wednesday, 23 March, 2022 - 12:00 edit

    Use Docker or Pod Manager multi-stage build to compile Nginx from source code with additional headers-more-nginx-module module using Debian Bullseye image. The idea is quite simple. The first step is to download source code. The second step is use source code regardless of the used revision control system to build an application and divert installation […]

    Značky: #Bullseye, #DevOps, #Docker, #Debian, #Linux, #Podman, #nginx

    • chevron_right

      13 tools that make Kubernetes better

      pubsub.slavino.sk / infoworldcom · Wednesday, 16 March, 2022 - 10:00 edit

    Few computing platforms—even those of great power and scale—satisfy every need out of the box. While Kubernetes is useful out of the box, it’s far from complete. You can always find a use case or a need where the default Kubernetes feature set falls short, such as database support, or simply ignores, such as continuous delivery.

    To read this article in full, please click here

    (Insider Story)

    Značky: #Containers, #Rozne, #Devops, #Kubernetes, #Docker

    • chevron_right

      How to Check Disk Space Usage for Docker Images, Containers and Volumes

      pubsub.slavino.sk / linuxhandbook.com · Tuesday, 15 February, 2022 - 15:08 edit

    A collection of tips to let you know how to check disk space usage of Docker Images, Containers and Volumes on your Linux server host.

    Značky: #Linux, #Docker

    • chevron_right

      Setting Hostname in Docker Compose

      pubsub.slavino.sk / linuxhandbook.com · Thursday, 25 November, 2021 - 12:50 edit

    In this quick Docker tip, you'll learn how to set a hostname for your container via Docker Compose.

    Značky: #Docker, #Linux