Bump abra, add swarm installer script
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Luke Murphy
2020-09-24 09:14:00 +02:00
parent 45402139ba
commit ed1d84c575
6 changed files with 67 additions and 9 deletions

16
swarm/swarm-installer Normal file
View File

@ -0,0 +1,16 @@
#!/bin/sh
install_docker() {
echo "install_docker: TODO"
}
init_swarm() {
echo "init_swarm: TODO"
}
run_installation() {
install_docker
init_swarm
}
run_installation
exit 0

10
swarm/swarm.conf Normal file
View File

@ -0,0 +1,10 @@
server {
listen 80 default_server;
server_name install.swarm.autonomic.zone;
location / {
root /var/www/swarm-installer;
add_header Content-Type text/plain;
index swarm-installer;
}
}