mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-05 16:35:45 +00:00
Rootless users should be defaulted to point DOCKER_HOST at $XDG_RUNTIME_DIR/podman/podman.sock When podman-docker package is installed. [NO NEW TESTS NEEDED] Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
4 lines
174 B
Bash
Executable file
4 lines
174 B
Bash
Executable file
#!/bin/sh
|
|
[ -e ${ETCDIR}/containers/nodocker ] || \
|
|
echo "Emulate Docker CLI using podman. Create ${ETCDIR}/containers/nodocker to quiet msg." >&2
|
|
exec ${BINDIR}/podman "$@"
|