Podman : Use Docker Command2024/11/06 |
Install a script named [docker] that emulates the Docker CLI by executes podman commands. |
|
[1] | Install Podman-docker package. |
[root@dlp ~]#
dnf -y install podman-docker # [docker] command is installed [root@dlp ~]# ll /usr/bin/docker -rwxr-xr-x. 1 root root 167 Oct 18 09:00 /usr/bin/docker # emulates the Docker CLI by executes podman [root@dlp ~]# cat /usr/bin/docker #!/usr/bin/sh [ -f /etc/containers/nodocker ] || \ echo "Emulate Docker CLI using podman. Create /etc/containers/nodocker to quiet msg." >&2 exec /usr/bin/podman "$@" # test [docker] command [root@dlp ~]# docker images Emulate Docker CLI using podman. Create /etc/containers/nodocker to quiet msg. REPOSITORY TAG IMAGE ID CREATED SIZE srv.world/fedora-nginx latest cb2e14e1465e 28 minutes ago 316 MB srv.world/fedora-httpd latest 4dfbd95b4ef6 34 minutes ago 319 MB registry.fedoraproject.org/fedora latest 99519fcf3c1b 18 hours ago 163 MB |
Sponsored Link |