mirror of
https://github.com/openfaas/faas.git
synced 2025-06-11 09:46:48 +00:00
12 lines
186 B
Bash
12 lines
186 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 test
|
|
|
|
exit 0
|