Skip to content

Commit

Permalink
#3778 Upgrading postgresql to v10
Browse files Browse the repository at this point in the history
  • Loading branch information
joseorpa authored and rooftopcellist committed Jul 16, 2019
1 parent b8b98b1 commit 153507d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ objects:
name: ${DATABASE_SERVICE_NAME}
- name: POSTGRESQL_MAX_CONNECTIONS
value: ${POSTGRESQL_MAX_CONNECTIONS}
image: registry.access.redhat.com/rhscl/postgresql-96-rhel7
image: registry.access.redhat.com/rhscl/postgresql-10-rhel7
imagePullPolicy: IfNotPresent
livenessProbe:
initialDelaySeconds: 30
Expand Down
2 changes: 1 addition & 1 deletion installer/roles/local_docker/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ rabbitmq_port: "5672"
rabbitmq_user: "guest"
rabbitmq_password: "guest"

postgresql_version: "9.6"
postgresql_version: "10.7"
postgresql_image: "postgres:{{postgresql_version}}"

memcached_host: "memcached"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ services:

{% if pg_hostname is not defined %}
postgres:
image: postgres:9.6
image: postgres:10.7
container_name: awx_postgres
restart: unless-stopped
volumes:
Expand Down
2 changes: 1 addition & 1 deletion tools/docker-compose-cluster.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ services:
- CLUSTERED=true
- CLUSTER_WITH=rabbitmq_1
postgres:
image: postgres:9.6
image: postgres:10.7
container_name: tools_postgres_1
memcached:
image: memcached:alpine
Expand Down
2 changes: 1 addition & 1 deletion tools/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ services:
# dockerfile: Dockerfile-logstash
# Postgres Database Container
postgres:
image: postgres:9.6
image: postgres:10.7
container_name: tools_postgres_1
ports:
- "5432:5432"
Expand Down

0 comments on commit 153507d

Please sign in to comment.