Skip to content
This repository was archived by the owner on Feb 19, 2023. It is now read-only.

Commit 32f4e9f

Browse files
committed
fix: python path...certbot script..logfile
1 parent 4b2288e commit 32f4e9f

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

backend/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ LABEL maintainer Nick <[email protected]>
44

55
ARG env
66
ENV REQUIREMENTS_FILE ${env:-dev}.txt
7-
ENV PYTHONPATH "${PYTHONPATH}:/code/backend/src"
7+
ENV PYTHONPATH "${PYTHONPATH}:/code"
88

99
RUN apk add --no-cache \
1010
bash \

backend/logconfig.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,3 @@ loggers:
2929
handlers:
3030
- access
3131
propagate: no
32-
src.utils.runbot:
33-
level: DEBUG
34-
propogate: no
35-
handlers:
36-
- default

proxy/docker-entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ if [ ${#} -eq 0 ]; then
1313
echo "Installing Certbot"
1414
apk add --no-cache certbot \
1515
&& certbot certonly --standalone --agree-tos -m "${CERTBOT_EMAIL}" -n -d ${DOMAIN_LIST} \
16-
&& echo "certbot renew --nginx" >/etc/periodic/daily/certbot-renew \
16+
&& echo -e "#!/bin/sh\n\ncertbot renew --nginx" >/etc/periodic/daily/certbot-renew \
1717
&& chmod +x /etc/periodic/daily/certbot-renew
1818

1919
# run crond in the background with a log level of 8

0 commit comments

Comments
 (0)