File size: 256 Bytes
95d8484
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

# run uwsgi
# notice: already "COPY app.json /etc/uwsgi/app.json" at Dockerfile
/usr/bin/uwsgi -config=/etc/uwsgi/app.json &

#run nginx
# CMD ["nginx", "-g", "daemon off;"]
nginx -g 'daemon off;'
# /usr/local/nginx/sbin/nginx -g 'daemon off;'