Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions docker-compose.production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ x-app: &app
- .env.production
environment:
- MAGICK_CONFIGURE_PATH=/etc/ImageMagick-7
- HYKU_ATTACK_RATE_THROTTLE_OFF=false
- HYKU_ATTACK_RATE_LIMIT=10
volumes:
- .:/app/samvera
- /store/keep/derivatives:/app/samvera/derivatives
Expand Down Expand Up @@ -190,6 +192,12 @@ services:
ports:
- 3000:3000
restart: unless-stopped
healthcheck:
test: ["CMD-SHELL", "curl -fsS http://localhost:3000/up || exit 1"]
interval: 30s
timeout: 5s
retries: 3
start_period: 60s

worker:
<<: *app-worker
Expand Down
Loading