mirror of
https://github.com/bitwarden/server.git
synced 2025-07-05 18:12:48 -05:00
setup, build, and run scripts
This commit is contained in:
7
nginx/build.ps1
Normal file
7
nginx/build.ps1
Normal file
@ -0,0 +1,7 @@
|
||||
$dir = Split-Path -Parent $MyInvocation.MyCommand.Path
|
||||
|
||||
echo "`n# Building nginx"
|
||||
|
||||
echo "`nBuilding docker image"
|
||||
docker --version
|
||||
docker build -t bitwarden/nginx $dir\.
|
10
nginx/build.sh
Normal file
10
nginx/build.sh
Normal file
@ -0,0 +1,10 @@
|
||||
#!/usr/bin/env bash
|
||||
set -e
|
||||
|
||||
DIR="$(dirname $(readlink -f $0))"
|
||||
|
||||
echo -e "\n# Building nginx"
|
||||
|
||||
echo -e "\nBuilding docker image"
|
||||
docker --version
|
||||
docker build -t bitwarden/nginx $DIR/.
|
Reference in New Issue
Block a user