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