You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
567 B
27 lines
567 B
#!/usr/bin/env bash
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
pushd "${DIR}/.."
|
|
|
|
echo "Writing local testing build.info"
|
|
./scripts/get_build.sh > build.info
|
|
echo "DOCKER_DEVELOPMENT_"$(cat build.info) > build.info
|
|
|
|
CONTAINER_NAME=baphomet-dev
|
|
IMAGE_NAME=baphomet-js
|
|
IMAGE_TAG=dev
|
|
IMAGE_BUILD_DIR=.
|
|
|
|
docker build -t ${IMAGE_NAME}:${IMAGE_TAG} ${IMAGE_BUILD_DIR}
|
|
|
|
rm build.info
|
|
|
|
docker rm ${CONTAINER_NAME}
|
|
|
|
docker run -it \
|
|
-e NODE_ENV=development \
|
|
-e LOG_LEVEL=debug \
|
|
--name ${CONTAINER_NAME} \
|
|
${IMAGE_NAME}:${IMAGE_TAG}
|
|
|
|
popd
|