root: fix missing /lifecycle in path
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
This commit is contained in:
parent
ac3fcc4284
commit
6b5200fead
|
@ -146,10 +146,10 @@ USER 1000
|
|||
ENV TMPDIR=/dev/shm/ \
|
||||
PYTHONDONTWRITEBYTECODE=1 \
|
||||
PYTHONUNBUFFERED=1 \
|
||||
PATH="/ak-root/venv/bin:$PATH" \
|
||||
PATH="/ak-root/venv/bin:/lifecycle:$PATH" \
|
||||
VENV_PATH="/ak-root/venv" \
|
||||
POETRY_VIRTUALENVS_CREATE=false
|
||||
|
||||
HEALTHCHECK --interval=30s --timeout=30s --start-period=60s --retries=3 CMD [ "/lifecycle/ak", "healthcheck" ]
|
||||
HEALTHCHECK --interval=30s --timeout=30s --start-period=60s --retries=3 CMD [ "ak", "healthcheck" ]
|
||||
|
||||
ENTRYPOINT [ "dumb-init", "--", "/lifecycle/ak" ]
|
||||
ENTRYPOINT [ "dumb-init", "--", "ak" ]
|
||||
|
|
|
@ -10,7 +10,7 @@ Configure your monitoring software to send requests to `/-/health/live/`, which
|
|||
|
||||
## Worker monitoring
|
||||
|
||||
The worker container can be monitored by running `/lifecycle/ak healthcheck` in the worker container. This will ping the worker and ensure it can communicate with redis as required.
|
||||
The worker container can be monitored by running `ak healthcheck` in the worker container. This will ping the worker and ensure it can communicate with redis as required.
|
||||
|
||||
## Outpost monitoring
|
||||
|
||||
|
|
Reference in New Issue