Servicedock: Webgui for Docker Swarm. Manage Docker Swarm a a Service.
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 
Marc Wäckerlin 1ca7433f06 refactoring done, all is now based on dockerode 5 anni fa
bin updated for new view 6 anni fa
client refactoring done, all is now based on dockerode 5 anni fa
routes fix typo; throw exception on error 5 anni fa
style refactoring done, all is now based on dockerode 5 anni fa
views bugs fixed for standalone volumes; zoom added 5 anni fa
Dockerfile shows docker swarm stack 6 anni fa
README.md updated for new view 6 anni fa
app.js also show proxied urls 5 anni fa
package.json refactoring done, all is now based on dockerode 5 anni fa
start.sh shows docker swarm stack 6 anni fa

README.md

ServiceDock — Docker Swarm as a Service

Docker swarm is cool, much simpler to use than OpenShift, but unfortunately I did not find a really nice overview Web-UI to monitor the services, so I created this one.

Run

Command-Line:

docker run --rm -it -p 8888:4000 -v /var/run/docker.sock:/var/run/docker.sock:ro mwaeckerlin/servicedock:latest

YAML to Deploy in Swarm:

version: '3.7'
services:

  servicedock:
    image: mwaeckerlin/servicedock
    volumes:
      - type: bind
        source: /var/run/docker.sock
        target: /var/run/docker.sock
        read-only: true
    ports:
      - 8035:4000
    deploy:
      placement:
        constraints: [node.role == manager]
      resources:
        limits:
          memory: 100M