Stop capturing logs for containers I don't care about
This commit is contained in:
parent
0d5913ce3c
commit
cf763d07f2
3 changed files with 10 additions and 0 deletions
|
@ -22,3 +22,5 @@ services:
|
||||||
- EXEC=1
|
- EXEC=1
|
||||||
volumes:
|
volumes:
|
||||||
- /var/run/docker.sock:/var/run/docker.sock:ro
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
||||||
|
logging:
|
||||||
|
driver: none
|
||||||
|
|
|
@ -34,3 +34,5 @@ services:
|
||||||
- IMAGES=1
|
- IMAGES=1
|
||||||
volumes:
|
volumes:
|
||||||
- /var/run/docker.sock:/var/run/docker.sock:ro
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
||||||
|
logging:
|
||||||
|
driver: none
|
||||||
|
|
|
@ -33,6 +33,8 @@ services:
|
||||||
- /var/run/docker.sock:/var/run/docker.sock:ro
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
||||||
networks:
|
networks:
|
||||||
- proxy_private
|
- proxy_private
|
||||||
|
logging:
|
||||||
|
driver: none
|
||||||
|
|
||||||
shenanigans:
|
shenanigans:
|
||||||
image: nginx:alpine
|
image: nginx:alpine
|
||||||
|
@ -41,6 +43,8 @@ services:
|
||||||
- /opt/traefik/nginx.conf:/etc/nginx/conf.d/default.conf:ro
|
- /opt/traefik/nginx.conf:/etc/nginx/conf.d/default.conf:ro
|
||||||
networks:
|
networks:
|
||||||
- proxy_private
|
- proxy_private
|
||||||
|
logging:
|
||||||
|
driver: none
|
||||||
|
|
||||||
certs:
|
certs:
|
||||||
image: slocomptech/traefik-cert-extract:latest
|
image: slocomptech/traefik-cert-extract:latest
|
||||||
|
@ -49,6 +53,8 @@ services:
|
||||||
volumes:
|
volumes:
|
||||||
- ./traefik:/data:ro
|
- ./traefik:/data:ro
|
||||||
- ./certs:/config/certs
|
- ./certs:/config/certs
|
||||||
|
logging:
|
||||||
|
driver: none
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
traefik:
|
traefik:
|
||||||
|
|
Loading…
Reference in a new issue