Help needed with Metabase Installation

Hi, we tried to setup Metabase in our Google cloud where our cloud instance is running(example. com). I will list out the procedure we followed.

1.First we installed Docker by this Digital ocean Docker installation
2.Installed Metabase by Metabase Docker Installation
3. Commented out the line bind-address = 127.0.0.1 in /etc/mysql/my.cnf .
4. Opened ports 3000 and 3306.
5. Added mysql queries
CREATE USER ‘user_remote_R_only’@‘localhost’ IDENTIFIED BY ‘myStrongeSTpassword’;
CREATE USER ‘user_remote_R_only’@’%’ IDENTIFIED BY ‘myStrongeSTpassword’;
GRANT SELECT ON . TO ‘user_remote_R_only’@‘localhost’;
GRANT SELECT ON . TO ‘user_remote_R_only’@’%’;
flush privileges;

But when i access example. com:3000 , nothing is loading, don’t know where went wrong.
Metabase Docker container is running normally.