I'd like to create clickable file for Mac users to run docker container. I want to use Platypus to achieve this:
Script:
#!/bin/sh
set -e
docker run -d --name nginx nginx:latest
echo ">>>>> done!"
After clicking .app
file nothing happens:
Any ideas why it doesn't work?