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