mirror of
https://github.com/openfaas/faas.git
synced 2025-06-09 00:36:46 +00:00
10 lines
267 B
Bash
Executable File
10 lines
267 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if ! [ -x "$(command -v docker)" ]; then
|
|
echo 'Unable to find docker command, please install Docker (https://www.docker.com/) and retry' >&2
|
|
exit 1
|
|
fi
|
|
|
|
echo "Deploying extended stack"
|
|
docker stack deploy func --compose-file docker-compose.extended.yml
|