Skip to content

Commit b8f3552

Browse files
author
Evan Richardson
committed
Added logrotate package and config
Rev'd to 1.3
1 parent b25a782 commit b8f3552

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

Docker/Dockerfile

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
FROM python:3.7.2-alpine3.8
22

33
LABEL maintainer="Evan Richardson"
4-
LABEL version="1.2"
4+
LABEL version="1.3"
55

66
WORKDIR /app
77
COPY . /app
8+
COPY ./src/conf/logrotate/tHome /etc/logrotate.d/
89
ENV PYTHONPATH=/app/src/python
9-
RUN pip3 install --no-cache-dir --upgrade pip
10-
RUN pip3 install --no-cache-dir -r requirements.txt
10+
RUN apk --update add --no-cache logrotate \
11+
&& pip3 install --no-cache-dir --upgrade pip \
12+
&& pip3 install --no-cache-dir -r requirements.txt
1113
#RUN rm -rf /var/cache/apk
1214

1315
CMD ["/app/src/bin/tHome-eagle.py", "-c", "/app/src/conf"]

Docker/src/conf/logrotate/tHome

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
/var/log/tHome/*.log {
2+
weekly
3+
size 5M
4+
missingok
5+
rotate 8
6+
compress
7+
delaycompress
8+
create 644 root root
9+
}

0 commit comments

Comments
 (0)