vits-api / entrypoint.sh
Artrajz's picture
Update docker script
3464d92
Raw
History Blame Contribute Delete
244 Bytes
#!/bin/sh
if [ ! -d "/app/data" ] || [ -z "$(ls -A /app/data)" ]; then
echo "The host's ./data directory is empty or does not exist. Copying data from the container..."
mkdir -p /app/data
cp -r /data_bak/* /app/data/
fi
exec "$@"