mrp-yt / docker_and_portainer_on_dex

Step by Step guide on how to setup Alpine VM inside Termux and get Docker Containers and Portainer. Originally posted by oofnikj
https://youtu.be/IthUo9zVfmg
75 stars 12 forks source link

Improvement: Make it shell agnostic #3

Closed Zeioth closed 1 year ago

Zeioth commented 1 year ago

Currently the script only work on bash. This is due to 'termux-setup.sh' using env vars in a bash only way:

wget -q -c -t0 ${URL}/${BRACH}/config.env

instead of the portable way:

wget -q -c -t0 "$URL/$BRACH/config.env"

Also it would be a very good idea to have all files in the same repo, so users can submit PRs.