generated from oci/template
All checks were successful
Build Docker Image on Commit / build-and-publish (push) Successful in 16m30s
4 lines
116 B
Bash
Executable file
4 lines
116 B
Bash
Executable file
#!/bin/bash
|
|
# Simple healthcheck - check if the FTS process is running
|
|
pgrep -f "FreeTAKServer" > /dev/null
|
|
exit $?
|