This repository has been archived on 2024-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
lambda-boilerplate/script/stop

12 lines
153 B
Text
Raw Permalink Normal View History

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