mirror of
https://github.com/openfaas/faas.git
synced 2025-06-08 16:26:47 +00:00
12 lines
173 B
Bash
12 lines
173 B
Bash
#/bin/sh
|
|
|
|
dockerd &
|
|
|
|
while [ ! -e /var/run/docker.sock ] ; do sleep 0.25 && echo "Waiting for Docker socket" ; done
|
|
|
|
docker swarm init
|
|
|
|
./deploy_stack.sh
|
|
|
|
tail -f /dev/null
|