We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b25a782 commit b8f3552Copy full SHA for b8f3552
Docker/Dockerfile
@@ -1,13 +1,15 @@
1
FROM python:3.7.2-alpine3.8
2
3
LABEL maintainer="Evan Richardson"
4
-LABEL version="1.2"
+LABEL version="1.3"
5
6
WORKDIR /app
7
COPY . /app
8
+COPY ./src/conf/logrotate/tHome /etc/logrotate.d/
9
ENV PYTHONPATH=/app/src/python
-RUN pip3 install --no-cache-dir --upgrade pip
10
-RUN pip3 install --no-cache-dir -r requirements.txt
+RUN apk --update add --no-cache logrotate \
11
+&& pip3 install --no-cache-dir --upgrade pip \
12
+&& pip3 install --no-cache-dir -r requirements.txt
13
#RUN rm -rf /var/cache/apk
14
15
CMD ["/app/src/bin/tHome-eagle.py", "-c", "/app/src/conf"]
Docker/src/conf/logrotate/tHome
@@ -0,0 +1,9 @@
+/var/log/tHome/*.log {
+ weekly
+ size 5M
+ missingok
+ rotate 8
+ compress
+ delaycompress
+ create 644 root root
+}
0 commit comments