File size: 262 Bytes
b814168
 
d09ff7a
 
 
 
 
b814168
 
d09ff7a
1
2
3
4
5
6
7
8
9
10
#!/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 "$@"