Files
podman/docs/dckrman.sh
Daniel J Walsh 344ba32c87 Add dockerfile.5 as man link to containerfile man page
containers-common now ships a containerfile man page,
this patch adds a link to dockerfile.5 so that if user
installs podman-docker package man dockerfile will work.

[NO TESTS NEEDED] since this is just a man page change.

Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
2021-09-27 14:54:14 -04:00

8 lines
194 B
Bash
Executable File

#!/bin/sh
for i in $@; do
b=$(basename $i)
filename=$(echo $i | sed 's/podman/docker/g')
echo .so man1/$b > $filename
done
echo .so man5/containerfile.5 > $(dirname $1)/dockerfile.5