'docker compose up -d -> Additional property environnement is not allowed. Why?

I tried to pass the command docker compose up -d

but I've got

Additional property environnement is not allowed from Debian

here is my yaml file

version: "3"
services:
    db:
     image: mysql:5.7
     volumes:
        - db_data:/var/lib/mysql
     restart: always
     environnement:
       MYSQL_ROOT_PASSWORD: somewordpress
       MYSQL_DATABASE: wordpress
       MYSQL_USER: wordpress
       MYSQL_PASSWORD: wordpress
           
    wordpress:
      depends_on:
         - db
      image: wordpress:latest
      ports:
         - "8000:80"
      restart: always
      environment:
        WORDPRESS_DB_HOST: db:3306
        WORDPRESS_DB_USER: wordpress
        WORDPRESS_DB_PASSWORD: wordpress
        WORDPRESS_DB_NAME: wordpress
            
volumes:
    db_data: {}

Can you help?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source