diff --git a/website/docs/migrating-from-docker/emulating-docker-cli-with-podman.md b/website/docs/migrating-from-docker/emulating-docker-cli-with-podman.md index 91e5cbbabf1..2ef19516792 100644 --- a/website/docs/migrating-from-docker/emulating-docker-cli-with-podman.md +++ b/website/docs/migrating-from-docker/emulating-docker-cli-with-podman.md @@ -25,7 +25,7 @@ Consider emulating Docker CLI with Podman to migrate transparently to Podman. 1. Create a `/usr/local/bin/docker` script: ```shell - #!/usr/bin/sh + #!/bin/sh [ -e /etc/containers/nodocker ] || \ echo "Emulate Docker CLI using podman. Create /etc/containers/nodocker to quiet msg." >&2 exec podman "$@" diff --git a/website/docs/migrating-from-docker/verifying-your-tools-are-using-podman.md b/website/docs/migrating-from-docker/verifying-your-tools-are-using-podman.md index 69dabe87bbb..e8f2543f5c9 100644 --- a/website/docs/migrating-from-docker/verifying-your-tools-are-using-podman.md +++ b/website/docs/migrating-from-docker/verifying-your-tools-are-using-podman.md @@ -62,14 +62,14 @@ When you have configured your host to use Podman rather then Docker, consider ve ```shell-session - $ CONTAINER_HOST=/var/run/docker.sock podman ps + $ CONTAINER_HOST=unix:///var/run/docker.sock podman ps ``` ```shell-session - $ CONTAINER_HOST=/var/run/docker.sock podman ps + $ CONTAINER_HOST=unix:///var/run/docker.sock podman ps ```