Run this:
sed -i "s/cpus: '2.0'/cpus: '1.0'/g" /root/docker-compose.yml && cd /root && docker compose down && docker compose up -d
Then just confirm that mysql has 2 plans with this command: mysql -e "SELECT * FROM panel.plans;"
output should be:
+----+---------------------+---------------------------------+---------------+----------------+------------+--------------+----------+------+------+------------------+-----------+--------------+
| id | name | description | domains_limit | websites_limit | disk_limit | inodes_limit | db_limit | cpu | ram | docker_image | bandwidth | storage_file |
+----+---------------------+---------------------------------+---------------+----------------+------------+--------------+----------+------+------+------------------+-----------+--------------+
| 1 | default_plan_nginx | Unlimited disk space and Nginx | 0 | 10 | 10 GB | 1000000 | 0 | 1 | 1g | openpanel/nginx | 100 | 0 GB |
| 2 | default_plan_apache | Unlimited disk space and Apache | 0 | 10 | 10 GB | 1000000 | 0 | 1 | 1g | openpanel/apache | 100 | 0 GB |
+----+---------------------+---------------------------------+---------------+----------------+------------+--------------+----------+------+------+------------------+-----------+--------------+
If it is not, then please do: cd /root && docker compose down && docker compose up
and it will show eaxctly why mysql and panel are failing.