mirror of
https://github.com/ansible/awx.git
synced 2026-01-11 01:57:35 -03:30
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:
parent
ff7c2e9180
commit
38fd652f89
@ -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 }}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user