mirror of
https://github.com/ansible/awx.git
synced 2026-03-10 14:09:28 -02: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:
@@ -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 }}
|
||||
|
||||
Reference in New Issue
Block a user