-
Notifications
You must be signed in to change notification settings - Fork 26
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Checked for duplicates
Yes - I've already checked
Is this a regression?
No - This is a new bug
Version
v3.7.1
Describe the bug
The Docker Healthcheck for Aerie Workspace has an extra hyphen in the curl command. This results in the healthcheck never returning healthy.
CMD curl --sf http://localhost/:$PORT/health || exit 1
Should be:
CMD curl -sf http://localhost/:$PORT/health || exit 1
Reproduction
As executed in the container
root@e8097cd81aac:/usr/src/app# curl --sf localhost:28000/health ; echo $?
curl: option --sf: is unknown
curl: try 'curl --help' or 'curl --manual' for more information
2
When omitting the extra hyphen
root@e8097cd81aac:/usr/src/app# curl -sf localhost:28000/health ; echo $?
0
Logs
System Info
Chrome, RHEL8.10Severity
Minor
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working
Type
Projects
Status
Todo