We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 539395a commit a8b19ceCopy full SHA for a8b19ce
apps/cms/Dockerfile
@@ -28,6 +28,7 @@ RUN pnpm --filter cms build
28
FROM node:24.8.0-alpine AS production
29
30
RUN corepack enable pnpm
31
+RUN apk add --no-cache curl
32
WORKDIR /app
33
34
# Copy workspace configuration
docker-compose.yml
@@ -48,10 +48,10 @@ services:
48
volumes:
49
- cms_uploads:/app/apps/cms/uploads
50
healthcheck:
51
- test: ['CMD-SHELL', 'curl -f http://localhost:3001/admin || exit 1']
+ test: ['CMD-SHELL', 'nc -z localhost 3001 || exit 1']
52
interval: 30s
53
timeout: 10s
54
- retries: 3
+ retries: 5
55
start_period: 60s
56
57
# Web Application
0 commit comments