You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Marc Wäckerlin
1ca7433f06
|
6 years ago | |
---|---|---|
bin | 6 years ago | |
client | 6 years ago | |
routes | 6 years ago | |
style | 6 years ago | |
views | 6 years ago | |
Dockerfile | 6 years ago | |
README.md | 6 years ago | |
app.js | 6 years ago | |
package.json | 6 years ago | |
start.sh | 6 years ago |
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