2018-12-05 00:39:30 +01:00
2018-11-03 13:34:37 +01:00
2018-11-30 22:35:34 +01:00
2018-11-29 14:20:18 +01:00
2018-11-01 21:08:07 +01:00
2018-11-03 13:34:37 +01:00
2018-11-01 21:08:07 +01:00

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
Description
Servicedock: Webgui for Docker Swarm. Manage Docker Swarm a a Service.
Readme 11 MiB
Languages
JavaScript 44.8%
CSS 18.8%
Stylus 18.8%
HTML 7.7%
Pug 7.7%
Other 2.2%