Skip to content

Commit

Permalink
Revert "Add psql healthchecks"
Browse files Browse the repository at this point in the history
This reverts commit 00ddf2f.
  • Loading branch information
edgarrmondragon committed Nov 4, 2024
1 parent 0dbe0a0 commit 265152c
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,6 @@ services:
POSTGRES_DB: postgres
ports:
- "5432:5432"
healthcheck:
test: [ "CMD", "pg_isready", "-d", "postgres", "-U", "arch" ]
interval: 5s
timeout: 5s
retries: 3

postgresdb:
image: postgres:${POSTGRES_VERSION:-latest}
Expand All @@ -43,11 +38,6 @@ services:
networks:
inner:
ipv4_address: 10.5.0.5
healthcheck:
test: [ "CMD", "pg_isready", "-d", "postgres", "-U", "arch" ]
interval: 5s
timeout: 5s
retries: 3

postgres_ssl:
image: postgres:${POSTGRES_VERSION:-latest}
Expand All @@ -66,11 +56,6 @@ services:
- ./ssl/pg_hba.conf:/var/lib/postgresql/pg_hba.conf # Configuration file to allow connection over SSL.
ports:
- "5433:5432"
healthcheck:
test: [ "CMD", "pg_isready", "-d", "postgres", "-U", "arch" ]
interval: 5s
timeout: 5s
retries: 3

postgres_log_based:
image: meltano/log_based # Locally built
Expand All @@ -83,11 +68,6 @@ services:
- ./log_based:/docker-entrypoint-initdb.d
ports:
- "5434:5432"
healthcheck:
test: [ "CMD", "pg_isready", "-d", "postgres", "-U", "arch" ]
interval: 5s
timeout: 5s
retries: 3


networks:
Expand Down

0 comments on commit 265152c

Please sign in to comment.