All Projects → StefanScherer → swarm-monitor

StefanScherer / swarm-monitor

Licence: MIT license
Monitor a Docker Swarm with Blinkt! LED

Programming Languages

javascript
184084 projects - #8 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to swarm-monitor

docker-elasticsearch
Multi-architecture (arm, x86) Docker image for Elasticsearch
Stars: ✭ 14 (-70.83%)
Mutual labels:  arm, docker-swarm
bundlemon
Monitor your bundle size
Stars: ✭ 53 (+10.42%)
Mutual labels:  monitor
vaper
Take a look at the relations among servers.
Stars: ✭ 16 (-66.67%)
Mutual labels:  monitor
open-watch
An open-source handmade smartwatch. All of the codes, PCBs and schematics are available. ⌚
Stars: ✭ 35 (-27.08%)
Mutual labels:  arm
desmume
DeSmuME is a Nintendo DS emulator
Stars: ✭ 1,609 (+3252.08%)
Mutual labels:  arm
speedy
Test, track, monitor and analyze your internet speed.
Stars: ✭ 35 (-27.08%)
Mutual labels:  monitor
flask-docker-swarm
Running Flask on Docker Swarm
Stars: ✭ 29 (-39.58%)
Mutual labels:  docker-swarm
playing-docker-swarm-docker-machine
Scripts to help you to play with Docker Swarm and Docker Machine
Stars: ✭ 19 (-60.42%)
Mutual labels:  docker-swarm
Realtek-USB-Wireless-Adapter-Drivers
Realtek USB Wireless Adapter Drivers [0bda:f179] (Kernel 4.15.x ~ 5.9.x)
Stars: ✭ 34 (-29.17%)
Mutual labels:  arm
docker gc
Garbage collector for Docker Swarm / Автоматическая сборка мусора для Docker и Docker Swarm
Stars: ✭ 56 (+16.67%)
Mutual labels:  docker-swarm
dockerdoo
Flexible and streamlined Odoo image to be used with docker-compose, docker swarm or Kubernetes. Fully integrated to with VSCode devcontainers
Stars: ✭ 55 (+14.58%)
Mutual labels:  docker-swarm
Intercept-netkeeper-account
截取NetKeeper拨号时的真实账号,截获到的账号可以用于路由器、电脑等的pppoe拨号,可用4.9及其以下版本的NetKeeper
Stars: ✭ 57 (+18.75%)
Mutual labels:  monitor
u8g2-arm-linux
U8g2 for arm linux - a monochrome graphics library
Stars: ✭ 37 (-22.92%)
Mutual labels:  arm
ChibiOS-rust
ChibiOS for Rust
Stars: ✭ 13 (-72.92%)
Mutual labels:  arm
bx-github-ci
This tutorial provides one example on how a CI (Continuous Integration) workflow with the IAR Build Tools for Linux can be set up on GitHub. The IAR Build Tools on Linux are available for Arm, RISC-V and Renesas (RH850, RL78 and RX).
Stars: ✭ 20 (-58.33%)
Mutual labels:  arm
microservices
Education & lessons learned from the field. Mainly focusing on AKS and Containers.
Stars: ✭ 16 (-66.67%)
Mutual labels:  docker-swarm
GoRAT
GoRAT (Go Remote Access Tool) is an extremely powerful reverse shell, file server, and control plane using HTTPS reverse tunnels as a transport mechanism.
Stars: ✭ 34 (-29.17%)
Mutual labels:  arm
stm32f7xx-hal
A Rust embedded-hal HAL for all MCUs in the STM32 F7 family
Stars: ✭ 71 (+47.92%)
Mutual labels:  arm
express-docker-app
Hyperminimal setup of an Express app with Docker. :)
Stars: ✭ 15 (-68.75%)
Mutual labels:  docker-swarm
dubbox
dubbox原始版本的升级版,主要根据GitHub各路大神代码的整合
Stars: ✭ 13 (-72.92%)
Mutual labels:  monitor

Docker Swarm Monitor

Build Status This image on DockerHub

The Docker Swarm Monitor shows running containers (eg. replicas of a swarm service) with the Blinkt! LED strip.

docker run -v /sys:/sys -v /var/run/docker.sock:/var/run/docker.sock monitor

Swarm Mode Demo

docker service create --name monitor \
--mode global --restart-condition any --mount type=bind,src=/sys,dst=/sys --mount type=bind,src=/var/run/docker.sock,dst=/var/run/docker.sock \
stefanscherer/monitor:1.1.0

Create a service

docker service create --name whoami stefanscherer/whoami:1.1.0

Scale service up and down

docker service scale whoami=4
docker service scale whoami=16
docker service scale whoami=32

scale up

Run a rolling update

docker service update --image stefanscherer/whoami:1.2.0 \
  --update-parallelism 4  --update-delay 2s whoami

scale up

Scale down

docker service scale whoami=1

scale up

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].