Servicedock: Webgui for Docker Swarm. Manage Docker Swarm a a Service.
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 702a064814 little fix: fail outside of socket connection 8 years ago
debian updated build from html/php to nodejs 8 years ago
doc first part of create neew nodes 8 years ago
nodejs little fix: fail outside of socket connection 8 years ago
AUTHORS initial 9 years ago
COPYING initial 9 years ago
ChangeLog little fix: fail outside of socket connection 8 years ago
INSTALL initial 9 years ago
NEWS initial 9 years ago
README added doku for installatin in README 9 years ago
ax_check_qt.m4 initial 9 years ago
ax_cxx_compile_stdcxx_11.m4 initial 9 years ago
ax_init_standard_project.m4 more bashing 8 years ago
bootstrap.sh updated build from html/php to nodejs 8 years ago
build-in-docker.conf updated build from html/php to nodejs 8 years ago
build-in-docker.sh more bashing 8 years ago
build-resource-file.sh initial 9 years ago
configure.ac updated build from html/php to nodejs 8 years ago
mac-create-app-bundle.sh initial 9 years ago
makefile.am updated build from html/php to nodejs 8 years ago
resolve-debbuilddeps.sh updated build from html/php to nodejs 8 years ago
resolve-rpmbuilddeps.sh initial 9 years ago
servicedock.desktop.in initial 9 years ago
servicedock.spec.in initial 9 years ago
sql-to-dot.sed initial 9 years ago

README

ServiceDock https://servicedock.ch

Run Docker as a Service.

Installation:

sudo pkg -i servicedock_*.deb
sudo apt-get install apache2 apache2-utils libapache2-mod-php5
sudo adduser www-data docker
sudo htdigest -c /etc/apache2/servicedock.digest "private area" $(whoami)
sudo dd of=/etc/apache2/conf-available/servicedock.conf <<EOF
Alias /servicedock /usr/share/servicedock/html
<Location /servicedock>
AuthType Digest
AuthName "private area"
AuthDigestDomain "/servicedock/" "http://dev0004/servicedock/"
AuthDigestProvider file
AuthUserFile "servicedock.digest"
Require valid-user
</Location>
EOF
sudo a2enconf servicedock
sudo a2enmod auth_digest
sudo service apache2 reload