diff --git a/compose_files/pulp/docker-compose.yml b/compose_files/pulp/docker-compose.yml index d0029ef..9afdd53 100644 --- a/compose_files/pulp/docker-compose.yml +++ b/compose_files/pulp/docker-compose.yml @@ -1,4 +1,3 @@ -version: '3' services: postgres: image: "docker.io/library/postgres:13" @@ -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" @@ -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: @@ -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 @@ -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 @@ -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 @@ -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