我的 docker-compose.yml 看起来像这样
postgres:
container_name: postgres-container-1
image: postgres:latest
ports:
- "15432:5432"
当我尝试跑步时
docker compose up -d
我收到以下错误
(root) Additional property postgres is not allowed
但是,当我跑步时
docker-compose up -d
一切都按预期运行,但我收到信息消息
Docker Compose is now in the Docker CLI, try `docker compose up`
所以我认为 docker-compose 很快就会过时......我做错了什么?