Users may get the message Additional property name is not allowed after running docker compose up.
I thought this only happened when using Compose V1, but a user reported this with Docker Compose version v2.0.0-rc.1.
Solution
A solution to this is to delete name: TrueBlocksCore from docker-compose.yml, but I don't think this is required past a certain version. The name: TrueBlocksCore should be deleted OR whichever version of docker compose that adds the name property should be noted as a requirement in the README.md.
Problem
Users may get the message
Additional property name is not allowed
after runningdocker compose up
.I thought this only happened when using Compose V1, but a user reported this with
Docker Compose version v2.0.0-rc.1
.Solution
A solution to this is to delete
name: TrueBlocksCore
fromdocker-compose.yml
, but I don't think this is required past a certain version. Thename: TrueBlocksCore
should be deleted OR whichever version of docker compose that adds the name property should be noted as a requirement in the README.md.