pocketnetteam / pocketnet.core

Decentralized social network based on the blockchain
https://pocketnet.app
Apache License 2.0
109 stars 28 forks source link

Official Docker Compose YAML Example Results in Integer Error #621

Closed cahlenlee closed 8 months ago

cahlenlee commented 8 months ago

Using the official docker-compose.yml example (https://github.com/pocketnetteam/pocketnet.core/blob/1bdbbc306285be11f11998827ef26b16d47d7643/README.md?plain=1#L76) results in the following error:

"validating /docker/pocketnet/docker-compose.yml: services.pocketnet.core.ulimits.nofile.hard must be a integer"

Removing the quotes from this portion fixes the problem:

ulimits: nofile: soft: "65536" hard: "65536"