This commit is contained in:
Oliver
2025-08-06 14:46:35 -03:00
commit b79b15b0ee
4 changed files with 127 additions and 0 deletions

18
build Executable file
View File

@@ -0,0 +1,18 @@
#!/bin/bash
VERSION=":latest"
while getopts ":r" opt; do
case ${opt} in
r )
VERSION=":release"
;;
\? )
echo "Invalid option: -$OPTARG" >&2
exit 1
;;
esac
done
echo "Version $VERSION"
docker build --no-cache -t docker.odoo4projects.com/od8n/n8n$VERSION .