Zyan11/LocalAI-Amlan-Edition
5
1#!/bin/bash2 3cd /workspace4 5# Get the files into the volume without a bind mount6if [ ! -d ".git" ]; then7 git clone https://github.com/mudler/LocalAI.git .8else9 git fetch10fi11 12echo "Standard Post-Create script completed."13 14if [ -f "/devcontainer-customization/postcreate.sh" ]; then15 echo "Launching customization postcreate.sh"16 bash "/devcontainer-customization/postcreate.sh"17fi