Skip to content

Commit

Permalink
Test to see if we can make podman-compose 1.0.3 work
Browse files Browse the repository at this point in the history
[noissue]
  • Loading branch information
mikedep333 committed Nov 16, 2023
1 parent 5a06d38 commit 68aca01
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions images/compose/compose.folders.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ services:
- "./assets/postgres/passwd:/etc/passwd:Z"
restart: always
healthcheck:
test: [ "CMD-SHELL", "pg_isready -U pulp" ]
test: pg_isready -U pulp
interval: 10s
timeout: 5s
retries: 5
Expand All @@ -26,7 +26,7 @@ services:
- "redis_data:/data"
restart: always
healthcheck:
test: [ "CMD-SHELL", "redis-cli ping" ]
test: redis-cli ping
interval: 10s
timeout: 5s
retries: 5
Expand Down Expand Up @@ -107,7 +107,7 @@ services:
- "../../pulp_storage:/var/lib/pulp:z"
restart: always
healthcheck:
test: [ "CMD-SHELL", "readyz.py /pulp/api/v3/status/" ]
test: readyz.py /pulp/api/v3/status/
interval: 10s
timeout: 5s
retries: 5
Expand All @@ -132,7 +132,7 @@ services:
- "../../pulp_storage:/var/lib/pulp:z"
restart: always
healthcheck:
test: [ "CMD-SHELL", "readyz.py /pulp/content/" ]
test: readyz.py /pulp/content
interval: 10s
timeout: 5s
retries: 5
Expand Down
8 changes: 4 additions & 4 deletions images/compose/compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ services:
- "./assets/postgres/passwd:/etc/passwd:Z"
restart: always
healthcheck:
test: [ "CMD-SHELL", "pg_isready -U pulp" ]
test: pg_isready -U pulp
interval: 10s
timeout: 5s
retries: 5
Expand All @@ -26,7 +26,7 @@ services:
- "redis_data:/data"
restart: always
healthcheck:
test: [ "CMD-SHELL", "redis-cli ping" ]
test: redis-cli ping
interval: 10s
timeout: 5s
retries: 5
Expand Down Expand Up @@ -109,7 +109,7 @@ services:
- "pulp:/var/lib/pulp"
restart: always
healthcheck:
test: [ "CMD-SHELL", "readyz.py /pulp/api/v3/status/" ]
test: readyz.py /pulp/api/v3/status/
interval: 10s
timeout: 5s
retries: 5
Expand All @@ -134,7 +134,7 @@ services:
- "pulp:/var/lib/pulp"
restart: always
healthcheck:
test: [ "CMD-SHELL", "readyz.py /pulp/content/" ]
test: readyz.py /pulp/content/
interval: 10s
timeout: 5s
retries: 5
Expand Down

0 comments on commit 68aca01

Please sign in to comment.