Add build and run scripts for Azurite container setup
This commit is contained in:
9
build.sh
Normal file
9
build.sh
Normal file
@@ -0,0 +1,9 @@
|
||||
#!/usr/bin/env bash
|
||||
if command -v dockerd &> /dev/null; then
|
||||
docker build -t azurite:latest .
|
||||
elif command -v container &> /dev/null; then
|
||||
container build -t azurite:latest .
|
||||
else
|
||||
echo "Neither supported container runtime found." >&2
|
||||
exit 1
|
||||
fi
|
||||
9
run.sh
Normal file
9
run.sh
Normal file
@@ -0,0 +1,9 @@
|
||||
#!/usr/bin/env bash
|
||||
if command -v dockerd &> /dev/null; then
|
||||
docker run --rm -it --env-file accounts.env -p 443:443 -v ./storage:/storage azurite:latest
|
||||
elif command -v container &> /dev/null; then
|
||||
container run --rm -it --env-file accounts.env -p 443:443 --mount type=bind,source=./storage,target=/storage azurite:latest
|
||||
else
|
||||
echo "Neither supported container runtime found." >&2
|
||||
exit 1
|
||||
fi
|
||||
Reference in New Issue
Block a user