mirror of
https://github.com/openfaas/faas.git
synced 2025-06-09 00:36:46 +00:00
12 lines
199 B
Bash
Executable File
12 lines
199 B
Bash
Executable File
#!/bin/bash
|
|
|
|
docker rm -f faas
|
|
docker run --name faas --privileged -p 8080:8080 -p 9090:9090 -d alexellis2/faas-dind:0.6.5
|
|
|
|
./test.sh
|
|
|
|
echo "Quitting after 120 seconds."
|
|
sleep 120
|
|
|
|
docker rm -f faas
|