Docker compose : found unexpected end of stream

Hi everybody, i am trying to do a docker compose for my cms, but it do not work, i do not understand why

docker compose up                           
yaml: line 23: found unexpected end of stream
ls  
docker-compose.yml

cat docker-compose.yml

"version: '2'
services:
  cmsms_sentiersetco:
    image: mablanco/cmsmadesimple
    ports:
      - 9080:80
    link:
      mariadb_sentiersetco:mariadb_sentiersetco
  volumes:
    - /home/powabanga/sites/sentiersetco/cms:/var/www/html
  network:
    - sentiersetco
  mariadb_sentiersetco:
    image: linuxserver/mariadb
    environment:
      MYSQL_ROOT_PASSWORD: paswd
      MYSQL_DATABASE: sentiersetcompagnie
      MYSQL_USER: powabanga
      MYSQL_PASSWORD: passwd
  volumes:
  - /home/powabanga/sites/sentiersetco/db:/var/lib/mysql

Does anybody can help me to understand why ?

1 Like

Is there really an opening " as the first character in that file?

Also, indentation of volumes and network seems a bit weird to me (but I’d guess that is unrelated to the error message), when looking at the levels of the two services.

1 Like

ho thin :flushed:

Thank you very much avbentem