I'm trying to use the following guide to setup Redash on Docker under a Windows environment:
But when I reach the following step:
docker-compose run --rm server create_db
I get this error:
ERROR: yaml.constructor.ConstructorError: while constructing a mapping in ".\docker-compose.yml", line 1, column 1
expected a mapping or list of mappings for merging, but found scalar in ".\docker-compose.yml", line 2, column 19
The first two lines are configured in docker-compose.yml as it follows:
1: version: ‘2’
2: x-redash-service: &redash-service
Column 19 in line 2 is "&".
What could be the source of this error?