Skip to content

Commit

Permalink
remove version
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrewgdewar committed Dec 16, 2024
1 parent 9d20f40 commit 5de177b
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions compose_files/pulp/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: '3'
services:
postgres:
image: "docker.io/library/postgres:13"
Expand All @@ -8,8 +7,8 @@ services:
POSTGRES_USER: pulp
POSTGRES_PASSWORD: password
POSTGRES_DB: pulp
POSTGRES_INITDB_ARGS: '--auth-host=scram-sha-256'
POSTGRES_HOST_AUTH_METHOD: 'scram-sha-256'
POSTGRES_INITDB_ARGS: "--auth-host=scram-sha-256"
POSTGRES_HOST_AUTH_METHOD: "scram-sha-256"
volumes:
- "pg_data:/var/lib/postgresql"
- "./assets/postgres/passwd:/etc/passwd:Z"
Expand All @@ -30,10 +29,10 @@ services:
volumes:
- "./assets/settings.py:/etc/pulp/settings.py:z"
- "./assets/certs:/etc/pulp/certs:z"
- "pulp:/var/lib/pulp"
- "pulp:/var/lib/pulp"

set_init_password_service:
image: "quay.io/redhat-services-prod/pulp-services-tenant/pulp:latest"
image: "quay.io/redhat-services-prod/pulp-services-tenant/pulp:latest"
command: set_init_password.sh
depends_on:
migration_service:
Expand All @@ -51,13 +50,13 @@ services:
- "redis_data:/data"
restart: always
healthcheck:
test: [ "CMD", "redis-cli", "--raw", "incr", "ping" ]
test: ["CMD", "redis-cli", "--raw", "incr", "ping"]

pulp_api:
image: "quay.io/redhat-services-prod/pulp-services-tenant/pulp:latest"
deploy:
replicas: 1
command: [ 'pulp-api' ]
command: ["pulp-api"]
depends_on:
migration_service:
condition: service_completed_successfully
Expand All @@ -79,7 +78,7 @@ services:
image: "quay.io/redhat-services-prod/pulp-services-tenant/pulp:latest"
deploy:
replicas: 1
command: [ 'pulp-content' ]
command: ["pulp-content"]
depends_on:
migration_service:
condition: service_completed_successfully
Expand All @@ -98,7 +97,7 @@ services:

pulp_web:
image: "pulp/pulp-web:latest"
command: [ '/usr/bin/nginx.sh' ]
command: ["/usr/bin/nginx.sh"]
depends_on:
migration_service:
condition: service_completed_successfully
Expand All @@ -115,7 +114,7 @@ services:
image: "quay.io/redhat-services-prod/pulp-services-tenant/pulp:latest"
deploy:
replicas: 1
command: [ 'pulp-worker' ]
command: ["pulp-worker"]
depends_on:
migration_service:
condition: service_completed_successfully
Expand Down

0 comments on commit 5de177b

Please sign in to comment.