12 lines
153 B
Text
12 lines
153 B
Text
|
#!/usr/bin/bash
|
||
|
|
||
|
# Stops a running local instange of the lambda.
|
||
|
|
||
|
(
|
||
|
source $(dirname $0)/../.config
|
||
|
|
||
|
cd $PROJECT_ROOT
|
||
|
|
||
|
docker-compose down
|
||
|
)
|