I want to reproduce this example,
run a mysql container.
podman run -d -e MYSQL_ROOT_DATABASE=123 mysql:8.0.25
verify the ip address of the container
podman inspect <id>
Then we can use any database client in the host, with this parameters to access the mysql database in the container:
- user : root
- pasword:123
- host: the-container-ip-address
my steps:
[chris@fedora ~]$ podman run -d -e MYSQL_ROOT_PASSWORD=123 mysql:8.0.25
6d008dbd5ad24a49ad1a63d1ccc688bbad3af0703cbd45f0560a340bd5b722e5
[chris@fedora ~]$ podman ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
6d008dbd5ad2 docker.io/library/mysql:8.0.25 mysqld 4 seconds ago Up 4 seconds ago practical_edison
[chris@fedora ~]$ podman inspect |grep IPAddress
Error: no names or ids specified
[chris@fedora ~]$ podman inspect practical_edison |grep IPAddress
"IPAddress": "",
[chris@fedora ~]$
And ther is no ip address in the mysql container.
Has podman another approach about it?
Is there a better or secure way to achieve it?
information:
[chris@fedora ~]$ podman --version
podman version 3.1.2
[chris@fedora ~]$
[chris@fedora ~]$ uname -a
Linux fedora 5.12.9-300.fc34.x86_64 #1 SMP Thu Jun 3 13:51:40 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux
[chris@fedora ~]$
I was making a mistake. I switched to super user using my administrative user and there the container does a ip address, maybe in the past i was only using
In conclusion, switching to super user with
Now the container does have ip address there. And you can use a pipe and
grep
command