I am following this wiki[0] to run R Studio on my box. Below are the commands I run

----------------------
# podman run -d -p 8787:8787 -e PASSWORD=XXX --name rstudio rocker/tidyverse
..........
Storing signatures
a72fac512b891c21f0654334a2032b0d67b87720cb986a092237ab272d245f8d
-----------------------------------
At this point, I am supposed to access the R studio app via my Firefox browser on port 8787 on localhost, which I can't.

Debuging:
--------------------------------------------
- Is the container running?
 # podman ls
CONTAINER ID  IMAGE                              COMMAND  CREATED        STATUS            PORTS                   NAMES
a72fac512b89  docker.io/rocker/tidyverse:latest  /init    2 minutes ago  Up 2 minutes ago  0.0.0.0:8787->8787/tcp  rstudio

-Is the 8787 port open?
 # podman port a72fac512b89
8787/tcp -> 0.0.0.0:8787
 # lsof -i -P -n | grep LISTEN
8:cupsd       984   root    8u  IPv6  35102      0t0  TCP [::1]:631 (LISTEN)
9:cupsd       984   root    9u  IPv4  35103      0t0  TCP 127.0.0.1:631 (LISTEN)
67:conmon    12891   root    5u  IPv4 453576      0t0  TCP *:8787 (LISTEN)

- Can I ping localhost, 0.0.0.0, 127.0.0.1, yogabx (hostname), 192.168.1.92 (returned by ip -a)
YES

- Do I have any firewall/iptable running?
 # systemctl status firewalld.service
● firewalld.service
   Loaded: masked (Reason: Unit firewalld.service is masked.)
   Active: inactive (dead)
NO iptables
---------------------------------------------------

What am I doing wrong? How can I debug this issue?

Thank you for help.