Skip to content

Commit e4ae4da

Browse files
authored
Merge pull request ripps818#30 from jobsidi/patch-1
Fix permanent "unhealthy" container status
2 parents 1ac842d + 23d9431 commit e4ae4da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ RUN mkdir -p "$BACKUP_PATH" \
284284
VOLUME ["${GAME_ROOT}"]
285285

286286
HEALTHCHECK --interval=10s --timeout=10s --start-period=30s --retries=3 \
287-
CMD pgrep -x "PalServer-Win64" >/dev/null 2>&1 || exit 1
287+
CMD pgrep -f "PalServer-Win64" >/dev/null 2>&1 || exit 1
288288

289289
ENTRYPOINT ["/entrypoint.sh"]
290290
CMD ["/scripts/servermanager.sh"]

0 commit comments

Comments
 (0)