11 lines
494 B
Bash
11 lines
494 B
Bash
#!/bin/sh
|
|
|
|
cat >&2 <<EOF
|
|
*
|
|
* If you're using podman as your cointainer runtime, make sure to enable the podman service and symlink
|
|
* /var/run/podman/podman.sock to /var/run/docker.sock, since wings has been originally written with docker in mind.
|
|
* ln -s /var/run/podman/podman.sock /var/run/docker.sock
|
|
* This symlink will vanish after a system reboot, so make sure you create a service or something else, to automatically
|
|
* generate this symlink again, before the wings-service starts.
|
|
*
|
|
EOF
|