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 d6968ac15a should compile for yaketty and trusty 8 years ago
debian fix build where java is not installed 8 years ago
doc ldap authentication works 8 years ago
nodejs fix systemd init file 8 years ago
scripts in the middle of the work for authentication 8 years ago
AUTHORS initial 9 years ago
COPYING should compile for yaketty and trusty 8 years ago
ChangeLog should compile for yaketty and trusty 8 years ago
INSTALL should compile for yaketty and trusty 8 years ago
NEWS initial 9 years ago
README added doku for installatin in README 9 years ago
autogen.sh login is possible 8 years ago
ax_check_qt.m4 initial 9 years ago
ax_cxx_compile_stdcxx_11.m4 login is possible 8 years ago
ax_init_standard_project.m4 should compile for yaketty and trusty 8 years ago
bootstrap.sh fixed display of username; fixed nodejs build on old systems 8 years ago
build-in-docker.conf should compile for yaketty and trusty 8 years ago
build-in-docker.sh should compile for yaketty and trusty 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 proper packaging and upstart scripts for ubuntu 8 years ago
makefile.am updated build from html/php to nodejs 8 years ago
makefile_test.inc.am login is possible 8 years ago
resolve-debbuilddeps.sh login is possible 8 years ago
resolve-rpmbuilddeps.sh login is possible 8 years ago
servicedock.desktop.in initial 9 years ago
servicedock.spec.in fix build where java is not installed 8 years ago
sql-to-dot.sed login is possible 8 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