brunneis commited on
Commit
432635b
1 Parent(s): 11a86be

Add script to launch the server locally

Browse files
Files changed (1) hide show
  1. run-local.sh +5 -0
run-local.sh ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ #!/bin/bash
2
+ # Remove the existing Docker container if it exists
3
+ docker rm -f hess || true
4
+ docker build -t hess .
5
+ docker run --name hess --rm -p 63958:63958 hess