comfyui-launcher / start.sh
multimodalart's picture
Update start.sh
5f297bd verified
raw
history blame
257 Bytes
#!/bin/bash
# Start Nginx in the background
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 "$@"