out of memory

docker logs zabbix-server查看出现如下报错
171:20220706:154129.997 [file:dbconfig.c,line:97] __zbx_shmem_malloc(): out of memory (requested 48 bytes)
171:20220706:154129.997 [file:dbconfig.c,line:97] __zbx_shmem_malloc(): please increase CacheSize configuration parameter
修改ZBX_CACHESIZE=”2G” 和ZBX_TRENDCACHESIZE=”512M”
docker run --name zabbix-server -e DB_SERVER_HOST="172.17.0.2" \
-e MYSQL_USER="zabbix" -e MYSQL_PASSWORD="password" \
-e ZBX_CACHESIZE="2G" -e ZBX_TRENDCACHESIZE="512M" \
--restart=always -d zabbix/zabbix-server-mysql:trunk-centos