Spaces:
Sleeping
Sleeping
Add script to launch the server locally
Browse files- 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
|