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