We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ae1a35 commit a897fe3Copy full SHA for a897fe3
docker-compose.yml
@@ -0,0 +1,18 @@
1
+services:
2
+ traefik:
3
+ image: traefik:v3.3.4
4
+ volumes:
5
+ - log_volume:/logs
6
+ command:
7
+ - --log.filePath=/logs/traefik.log
8
+ - --log.format=json
9
+
10
+ log_processor:
11
+ build: .
12
13
+ - log_volume:/input_logs
14
+ - processed_logs:/logs
15
+ command: tail -F /input_logs/traefik.log | python /app/process_logs.py
16
+volumes:
17
+ log_volume:
18
+ processed_logs:
0 commit comments