storagehub/buildImageAndStart.sh

16 lines
207 B
Bash
Raw Normal View History

2024-03-15 14:26:05 +01:00
#!/bin/bash
2024-03-25 16:37:40 +01:00
set -e
2024-03-15 14:26:05 +01:00
NAME=storagehub
2024-03-25 16:37:40 +01:00
PORT=8100
2024-03-15 14:26:05 +01:00
DEBUG_PORT=5005
debug=false
compile=false
mvn clean package
2024-03-27 12:04:49 +01:00
docker-compose -f docker-compose-standalone build
2024-03-15 14:26:05 +01:00
2024-03-27 12:04:49 +01:00
docker-compose -f docker-compose-standalone up