migration to public docker.io registry & more uwsgi options
This commit is contained in:
parent
849f81fabd
commit
f17177cf47
@ -15,4 +15,5 @@ COPY ./main.py ./list.tpl ./
|
|||||||
# I juste wanted to change the socket owner but it turned out I needed to change thu uwsgi user
|
# I juste wanted to change the socket owner but it turned out I needed to change thu uwsgi user
|
||||||
#CMD uwsgi --exec-asap 'chown $UID:$UID /tmp/uwsgi/ ; mkdir -p $BASE_PATH && chown $UID:$UID $BASE_PATH' -s /tmp/uwsgi/uwsgi.sock --uid $UID --manage-script-name --mount /=server:app
|
#CMD uwsgi --exec-asap 'chown $UID:$UID /tmp/uwsgi/ ; mkdir -p $BASE_PATH && chown $UID:$UID $BASE_PATH' -s /tmp/uwsgi/uwsgi.sock --uid $UID --manage-script-name --mount /=server:app
|
||||||
# --log-master makes 500 error on 30s timeout for every valid http request
|
# --log-master makes 500 error on 30s timeout for every valid http request
|
||||||
CMD uwsgi --chown-socket $UID -s /tmp/uwsgi/uwsgi.sock --manage-script-name --mount $MOUNT=main:app --master --hook-master-start "unix_signal:15 gracefully_kill_them_all" --need-app --die-on-term --show-config --log-master
|
CMD uwsgi --chown-socket $UID -s /tmp/uwsgi/uwsgi.sock --manage-script-name --mount $MOUNT=main:prod_app --http-timeout 10 --master --hook-master-start "unix_signal:15 gracefully_kill_them_all" --need-app --die-on-term --show-config --log-master --strict --vacuum --single-interpreter
|
||||||
|
#--logto /dev/stderr --logto2 /dev/stderr
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
set -e
|
set -e
|
||||||
version=2.0.1
|
version=2.0.1
|
||||||
docker build -t registry.jean-cloud.net/contact-mailer:latest -t registry.jean-cloud.net/contact-mailer:$version .
|
docker build -t jeancloud/contact-mailer:latest -t jeancloud/contact-mailer:$version .
|
||||||
docker push registry.jean-cloud.net/contact-mailer:latest
|
docker push jeancloud/contact-mailer:latest
|
||||||
docker push registry.jean-cloud.net/contact-mailer:$version
|
docker push jeancloud/contact-mailer:$version
|
||||||
|
Loading…
Reference in New Issue
Block a user