Changed start.sh to start.py
This commit is contained in:
@@ -12,11 +12,11 @@ RUN apk add --no-cache openssl \
|
|||||||
COPY mailu ./mailu
|
COPY mailu ./mailu
|
||||||
COPY migrations ./migrations
|
COPY migrations ./migrations
|
||||||
COPY manage.py .
|
COPY manage.py .
|
||||||
COPY start.sh /start.sh
|
COPY start.py /start.py
|
||||||
|
|
||||||
RUN pybabel compile -d mailu/translations
|
RUN pybabel compile -d mailu/translations
|
||||||
|
|
||||||
EXPOSE 80/tcp
|
EXPOSE 80/tcp
|
||||||
VOLUME ["/data"]
|
VOLUME ["/data"]
|
||||||
|
|
||||||
CMD ["/start.sh"]
|
CMD python /start.py
|
||||||
|
|||||||
7
core/admin/start.py
Executable file
7
core/admin/start.py
Executable file
@@ -0,0 +1,7 @@
|
|||||||
|
#!/usr/bin/python3
|
||||||
|
|
||||||
|
import os
|
||||||
|
|
||||||
|
os.system("python manage.py advertise")
|
||||||
|
os.system("python manage.py db upgrade")
|
||||||
|
os.system("gunicorn -w 4 -b :80 --access-logfile - --error-logfile - --preload mailu:app")
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
python manage.py advertise
|
|
||||||
python manage.py db upgrade
|
|
||||||
gunicorn -w 4 -b :80 --access-logfile - --error-logfile - --preload mailu:app
|
|
||||||
@@ -3,9 +3,9 @@ FROM alpine:3.8
|
|||||||
RUN apk add --no-cache clamav rsyslog wget clamav-libunrar
|
RUN apk add --no-cache clamav rsyslog wget clamav-libunrar
|
||||||
|
|
||||||
COPY conf /etc/clamav
|
COPY conf /etc/clamav
|
||||||
COPY start.sh /start.sh
|
COPY start.py /start.py
|
||||||
|
|
||||||
EXPOSE 3310/tcp
|
EXPOSE 3310/tcp
|
||||||
VOLUME ["/data"]
|
VOLUME ["/data"]
|
||||||
|
|
||||||
CMD ["/start.sh"]
|
CMD /start.py
|
||||||
|
|||||||
12
optional/clamav/start.py
Executable file
12
optional/clamav/start.py
Executable file
@@ -0,0 +1,12 @@
|
|||||||
|
#!/usr/bin/python3
|
||||||
|
|
||||||
|
import os
|
||||||
|
|
||||||
|
# Bootstrap the database if clamav is running for the first time
|
||||||
|
os.system("[ -f /data/main.cvd ] || freshclam")
|
||||||
|
|
||||||
|
# Run the update daemon
|
||||||
|
os.system("freshclam -d -c 6")
|
||||||
|
|
||||||
|
# Run clamav
|
||||||
|
os.system("clamd")
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
# Bootstrap the database if clamav is running for the first time
|
|
||||||
[ -f /data/main.cvd ] || freshclam
|
|
||||||
|
|
||||||
# Run the update daemon
|
|
||||||
freshclam -d -c 6
|
|
||||||
|
|
||||||
# Run clamav
|
|
||||||
clamd
|
|
||||||
Reference in New Issue
Block a user