MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.

    ChatGpt developed Module MMM-Dockerstat

    Scheduled Pinned Locked Moved Development
    27 Posts 4 Posters 6.2k Views 4 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • R Offline
      Rags @sdetweil
      last edited by

      @sdetweil said in ChatGpt developed Module MMM-Dockerstat:

      @Rags but are you running this on the docker host? outside any container?

      if u run this from INSIDE the container (where MM is running) , does it work?

      as I recall, it does not.

      I think the command (on the host) is

      Usage:  docker exec [OPTIONS] CONTAINER COMMAND [ARG...]
      

      docker exec container_id “docker -ps … rest of parms”

      but you will have to use docker command to get the container_id from the name to use in the exec

      long time ago, 9 years now, I wrote a whole bunch of scripts to support using docker to deploy and manage a software api testing service…

      Sorry if i have not been clear. My MagicMirror is in the living room. The MM is running on the first pi( standalone ) not in any container. The second pi in my network is tucked away in my study. This machine is installed with Docker containing multiple containers, which include pihole, wireguard, nginx, apache etc. Occasionally, one or two containers would quit running and I would realise quite late that a particular service is down. That’s why i was trying to build this module so that the status of all containers are known in a jiffy on the MM display.
      So when the MM docker module probes the second pi it should just ssh into it and retrieve the docker status easily, format the info in an array and display it. Simple (apparently ).

      S karsten13K 2 Replies Last reply Reply Quote 0
      • S Offline
        sdetweil @Rags
        last edited by

        @Rags got it…

        ssh will be the fun part (I think!)

        Sam

        How to add modules

        learning how to use browser developers window for css changes

        1 Reply Last reply Reply Quote 0
        • karsten13K Offline
          karsten13 @Rags
          last edited by

          @Rags said in ChatGpt developed Module MMM-Dockerstat:

          and I would realise quite late that a particular service is down

          then docker ps --format "{{.Names}} {{.State}}" maybe is the better choice, State can be one of the following: (created|restarting|running|removing|paused|exited|dead)

          R 1 Reply Last reply Reply Quote 0
          • R Offline
            Rags @karsten13
            last edited by Rags

            @karsten13 said in ChatGpt developed Module MMM-Dockerstat:

            docker ps --format "{{.Names}} {{.State}}

            should this command produce an output when run directly on the docker machine? I am not getting any output.!
            2023-04-03_07-55-53.png

            Docker ps -a gives this output listing all containers whether up or exited. I need to just pickup name and status
            2023-04-03_08-12-19.png
            Now just need to workout (as Sam says ‘the fun part’) ssh into second pi retrieve the docker ps -a and display.

            karsten13K 1 Reply Last reply Reply Quote 0
            • karsten13K Offline
              karsten13 @Rags
              last edited by

              @Rags

              missed the -a

              ❯ docker ps -a --format "{{.Names}} {{.State}}"
              magicmirror running
              watchtower running
              traefik running
              
              R 1 Reply Last reply Reply Quote 0
              • R Offline
                Rags @karsten13
                last edited by Rags

                @karsten13 said in ChatGpt developed Module MMM-Dockerstat:

                @Rags

                missed the -a

                ❯ docker ps -a --format "{{.Names}} {{.State}}"
                magicmirror running
                watchtower running
                traefik running
                

                Great !
                Yes the command is working now but locally on the docker machine only. It needs to work from the first machine after ssh ing into docker machine.
                ssh
                .exec (‘docker ps -a --format “{{.Names}} {{.State}}”’)
                .on(‘error’, (err) => {
                console.error(Error: ${err});
                this.status = ‘Error’;
                this.sendSocketNotification(‘STATUS_UPDATE’, { status: this.status, icon: this.offlineIcon });
                })

                1 Reply Last reply Reply Quote 0
                • 1
                • 2
                • 3
                • 3 / 3
                • First post
                  Last post
                Enjoying MagicMirror? Please consider a donation!
                MagicMirror created by Michael Teeuw.
                Forum managed by Sam, technical setup by Karsten.
                This forum is using NodeBB as its core | Contributors
                Contact | Privacy Policy