comfyui-launcher / start.sh
multimodalart's picture
Update start.sh
d09ff7a verified
raw
history blame
262 Bytes
#!/bin/bash
# Start Nginx in the background
sudo nginx &
# Print the command and arguments for debugging
echo "Starting the main application with command: $@"
# Execute the default CMD specified in the Dockerfile or passed via the docker run command
exec "$@"