File tree Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22
33exec celery \
4- --app=opwen_email_client.webapp.tasks \
4+ --app=" opwen_email_client.webapp.tasks" \
55 worker \
66 --loglevel=" ${LOKOLE_LOG_LEVEL} " \
77 --concurrency=" ${QUEUE_WORKERS} "
Original file line number Diff line number Diff line change @@ -8,8 +8,7 @@ FROM nginx:stable
88
99COPY --from=builder /usr/bin/mo /usr/bin/mo
1010COPY docker/nginx/static /static
11- COPY docker/nginx/nginx.conf.template /app/nginx.conf.template
12- COPY docker/nginx/server.conf.template /app/server.conf.template
11+ COPY docker/nginx/*.mustache /app/
1312COPY docker/nginx/run-nginx.sh /app/run-nginx.sh
1413
1514RUN mkdir -p /var/cache/nginx /etc/nginx/modules-enabled /etc/nginx/sites-enabled \
File renamed without changes.
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22
3- mo < /app/nginx.conf.template > /app/nginx.conf
4- mo < /app/server.conf.template > /etc/nginx/sites-enabled/server.conf
3+ mo < /app/nginx.conf.mustache > /app/nginx.conf
4+ mo < /app/server.conf.mustache > /etc/nginx/sites-enabled/server.conf
55
6- nginx -c " /app/nginx.conf" -p " ${PWD} " -g " daemon off;"
6+ exec nginx -c " /app/nginx.conf" -p " ${PWD} " -g " daemon off;"
File renamed without changes.
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ if [[ "$1" != "install" ]]; then
77 cd - || exit 99
88 docker-compose -f /home/opwen/lokole/docker/docker-compose.prod.yml pull || exit 2
99 docker-compose -f /home/opwen/lokole/docker/docker-compose.prod.yml up -d || exit 3
10+ docker system prune -a -f
1011 exit 0
1112fi
1213
You can’t perform that action at this time.
0 commit comments