Skip to content
Snippets Groups Projects
Verified Commit 6a30b1cd authored by Tamas Gal's avatar Tamas Gal :speech_balloon:
Browse files

Restructure

parent cee9c515
No related branches found
No related tags found
1 merge request!20Dockerise the monitoring
FROM python:3.9.2
MAINTAINER Tamas Gal <tgal@km3net.de>
ADD . /
WORKDIR /monitoring
COPY requirements.txt requirements.txt
RUN pip install -r requirements.txt
COPY . .
CMD ["supervisord", "-c", "supervisord.conf"]
......@@ -7,4 +7,14 @@ services:
- ${MONITORING_LIGIER_PORT}:5553
backend:
command: supervisord -c supervisord.conf
build: ./backend
volumes:
- ./logs:/logs
livelog:
build: ./livelog
ports:
- ${LOGGING_PORT}:9001
volumes:
- ./logs:/logs
FROM mthenw/frontail
MAINTAINER Tamas Gal <tgal@km3net.de>
COPY frontail.json frontail.json
EXPOSE 9001
CMD ["/logs/MSG.log --ui-highlight --ui-highlight-preset frontail.json --theme dark -l 10000 -n 200 -p 9001"]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment