update debug builds

This commit is contained in:
Erik Eckert 2023-12-21 11:04:54 -07:00
parent d3b5df2b53
commit 8da82dbb9d
3 changed files with 13 additions and 4 deletions

View File

@ -1,4 +0,0 @@
docker build . --tag debug-image --file Dockerfile.debug
docker stop debug-server
docker rm debug-server
docker run -d --publish 15054:10000 --publish 4000:4000 --name debug-server debug-image

6
test-build.bat Normal file
View File

@ -0,0 +1,6 @@
docker build . --tag test-image --file Dockerfile
docker build . --tag debug-image --file Dockerfile.debug
docker stop MPE_Egnyte_*
docker rm MPE_Egnyte_*
docker run -d --publish 15054:10000 --publish 4000:4000 --name MPE_Egnyte_Test test-image
docker run -d --publish 15053:10000 --publish 4000:4000 --name MPE_Egnyte_Debug test-image

7
test-build.sh Normal file
View File

@ -0,0 +1,7 @@
#! /bin/bash
docker build . --tag test-image --file Dockerfile
docker build . --tag debug-image --file Dockerfile.debug
docker stop MPE_Egnyte_*
docker rm MPE_Egnyte_*
docker run -d --publish 15054:10000 --publish 4000:4000 --name MPE_Egnyte_Test test-image
docker run -d --publish 15053:10000 --publish 4000:4000 --name MPE_Egnyte_Debug debug-image