mirror of
https://github.com/openfaas/faas.git
synced 2025-06-25 16:23:26 +00:00
12 lines
181 B
Bash
12 lines
181 B
Bash
#!/bin/bash
|
|
|
|
docker swarm init --advertise-addr=$(hostname -i)
|
|
|
|
./deploy_stack.sh
|
|
|
|
git clone https://github.com/openfaas/certify-incubator
|
|
cd certify-incubator && \
|
|
make
|
|
|
|
exit 0
|