feat: better healthcheck and prevent useless composer install calls
This commit is contained in:
parent
253eae0e15
commit
b5710da39c
@ -111,7 +111,7 @@ WORKDIR /srv/app
|
||||
ADD --chmod=500 https://caddyserver.com/api/download?os=linux&arch=$TARGETARCH&p=github.com/dunglas/mercure/caddy&p=github.com/dunglas/vulcain/caddy /usr/bin/caddy
|
||||
|
||||
COPY --link docker/caddy/Caddyfile /etc/caddy/Caddyfile
|
||||
HEALTHCHECK CMD wget --no-verbose --tries=1 --spider https://localhost/healthz || exit 1
|
||||
HEALTHCHECK CMD wget --no-verbose --tries=1 --spider http://localhost:2019/metrics || exit 1
|
||||
|
||||
# Prod Caddy image
|
||||
FROM caddy_base AS caddy_prod
|
||||
|
@ -2,7 +2,7 @@
|
||||
{$CADDY_GLOBAL_OPTIONS}
|
||||
}
|
||||
|
||||
{$SERVER_NAME:localhost}
|
||||
{$SERVER_NAME:localhost}
|
||||
|
||||
{$CADDY_EXTRA_CONFIG}
|
||||
|
||||
@ -19,10 +19,6 @@ log {
|
||||
}
|
||||
|
||||
route {
|
||||
# Healthcheck URL
|
||||
respond /healthz 200
|
||||
skip_log /healthz
|
||||
|
||||
root * /srv/app/public
|
||||
mercure {
|
||||
# Transport to use (default to Bolt)
|
||||
|
@ -27,7 +27,7 @@ if [ "$1" = 'php-fpm' ] || [ "$1" = 'php' ] || [ "$1" = 'bin/console' ]; then
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ "$APP_ENV" != 'prod' ]; then
|
||||
if [ ! -d 'vendor/' ]; then
|
||||
composer install --prefer-dist --no-progress --no-interaction
|
||||
fi
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user