Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Limit Rbmq disk limit and update import healthcheck #313

Merged
merged 3 commits into from
Dec 13, 2024
Merged
Changes from 2 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
3 changes: 2 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -327,7 +327,7 @@ services:
import:
image: georchestra/datafeeder-frontend:latest
healthcheck:
test: ["CMD-SHELL", "wget --no-verbose --tries=1 --spider http://localhost:80/ >/dev/null || exit 1"]
test: ["CMD-SHELL", "curl -s -f http://localhost:80/ >/dev/null || exit 1"]
f-necas marked this conversation as resolved.
Show resolved Hide resolved
interval: 30s
timeout: 10s
retries: 10
@@ -407,6 +407,7 @@ services:
- .envs-rabbitmq
environment:
- RABBITMQ_LOGS=-
- RABBITMQ_DISK_FREE_ABSOLUTE_LIMIT=1GB
volumes:
- 'rabbitmq_data:/bitnami/rabbitmq/mnesia'
restart: always