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/start

12 lines
155 B
Text
Raw Normal View History

#!/usr/bin/bash
# Starts a local instance of the lambda.
(
source $(dirname $0)/../.config
cd $PROJECT_ROOT
docker-compose up -d --build
)