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 e76e556ee6 allow image zoom and rotate 9 years ago
debian initial 10 years ago
doc first release 10 years ago
html allow image zoom and rotate 9 years ago
AUTHORS initial 10 years ago
COPYING initial 10 years ago
ChangeLog added doku for installatin in README 10 years ago
INSTALL initial 10 years ago
NEWS initial 10 years ago
README added doku for installatin in README 10 years ago
ax_check_qt.m4 initial 10 years ago
ax_cxx_compile_stdcxx_11.m4 initial 10 years ago
ax_init_standard_project.m4 added about and images 10 years ago
bootstrap.sh initial 10 years ago
build-in-docker.sh initial 10 years ago
build-resource-file.sh initial 10 years ago
configure.ac added about and images 10 years ago
mac-create-app-bundle.sh initial 10 years ago
makefile.am initial 10 years ago
resolve-debbuilddeps.sh initial 10 years ago
resolve-rpmbuilddeps.sh initial 10 years ago
servicedock.desktop.in initial 10 years ago
servicedock.spec.in initial 10 years ago
sql-to-dot.sed initial 10 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