Update docker-compose.yml.j2

Add quotes around volume value for posgres data. I installed via docker without changing any values and the UI was stuck in upgrading for long time. Browsed around and figured out that issue was due to postgres volume as a query was getting error. Inspected the template and found that there was no quotes around volume, unlike volumes for others. 
I added the quotes and docker compose was working
This commit is contained in:
mjeffin 2020-09-10 13:53:52 +05:30 committed by GitHub
parent ff7c2e9180
commit 38fd652f89
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -167,7 +167,7 @@ services:
container_name: awx_postgres
restart: unless-stopped
volumes:
- {{ postgres_data_dir }}/10/data/:/var/lib/postgresql/data:Z
- "{{ postgres_data_dir }}/10/data/:/var/lib/postgresql/data:Z"
environment:
POSTGRES_USER: {{ pg_username }}
POSTGRES_PASSWORD: {{ pg_password }}