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

Reverting healthcheck change #405

Merged
merged 1 commit into from
Jul 24, 2024
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
10 changes: 0 additions & 10 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,26 +17,19 @@ services:
published: 443
protocol: tcp
mode: ingress
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost/"]
interval: 1m
timeout: 10s
retries: 3
volumes:
- caddy:/data
networks:
- caddy_traefik
- caddy_astute
- default
restart: always

db:
image: postgres:14
environment:
- POSTGRES_HOST_AUTH_METHOD=trust
volumes:
- postgres:/var/lib/postgresql/data
restart: always

geoserver:
image: docker.osgeo.org/geoserver:2.21.2
Expand All @@ -45,7 +38,6 @@ services:
- EXTRA_JAVA_OPTS=-Xmx10g
volumes:
- geoserver:/opt/geoserver_data
restart: always

queue:
image: redis:7
Expand Down Expand Up @@ -73,7 +65,6 @@ services:
- secret_key_base
volumes:
- storage:/app/storage
restart: always

worker:
image: "wearepal/landscapes:${VERSION}"
Expand All @@ -87,7 +78,6 @@ services:
- secret_key_base
volumes:
- storage:/app/storage
restart: always

configs:
caddyfile:
Expand Down
Loading