Skip to content

Commit

Permalink
Update docker file and postgres version
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrewgdewar committed Dec 16, 2024
1 parent 5de177b commit 142cdfb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tang-actions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:15
image: postgres:16
env:
POSTGRES_PASSWORD: postgres
options: >-
Expand Down
9 changes: 8 additions & 1 deletion compose_files/pulp/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
services:
postgres:
image: "docker.io/library/postgres:13"
image: "docker.io/library/postgres:16"
platform: linux/amd64
ports:
- "5434:5432"
environment:
Expand All @@ -21,6 +22,7 @@ services:

migration_service:
image: "quay.io/redhat-services-prod/pulp-services-tenant/pulp:latest"
platform: linux/amd64
depends_on:
postgres:
condition: service_healthy
Expand All @@ -33,6 +35,7 @@ services:

set_init_password_service:
image: "quay.io/redhat-services-prod/pulp-services-tenant/pulp:latest"
platform: linux/amd64
command: set_init_password.sh
depends_on:
migration_service:
Expand All @@ -54,6 +57,7 @@ services:

pulp_api:
image: "quay.io/redhat-services-prod/pulp-services-tenant/pulp:latest"
platform: linux/amd64
deploy:
replicas: 1
command: ["pulp-api"]
Expand All @@ -76,6 +80,7 @@ services:

pulp_content:
image: "quay.io/redhat-services-prod/pulp-services-tenant/pulp:latest"
platform: linux/amd64
deploy:
replicas: 1
command: ["pulp-content"]
Expand All @@ -97,6 +102,7 @@ services:

pulp_web:
image: "pulp/pulp-web:latest"
platform: linux/amd64
command: ["/usr/bin/nginx.sh"]
depends_on:
migration_service:
Expand All @@ -112,6 +118,7 @@ services:

pulp_worker:
image: "quay.io/redhat-services-prod/pulp-services-tenant/pulp:latest"
platform: linux/amd64
deploy:
replicas: 1
command: ["pulp-worker"]
Expand Down

0 comments on commit 142cdfb

Please sign in to comment.