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
|
||||
volumes:
|
||||
- /var/run/docker.sock:/var/run/docker.sock:ro
|
||||
logging:
|
||||
driver: none
|
||||
|
|
|
@ -34,3 +34,5 @@ services:
|
|||
- IMAGES=1
|
||||
volumes:
|
||||
- /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
|
||||
networks:
|
||||
- proxy_private
|
||||
logging:
|
||||
driver: none
|
||||
|
||||
shenanigans:
|
||||
image: nginx:alpine
|
||||
|
@ -41,6 +43,8 @@ services:
|
|||
- /opt/traefik/nginx.conf:/etc/nginx/conf.d/default.conf:ro
|
||||
networks:
|
||||
- proxy_private
|
||||
logging:
|
||||
driver: none
|
||||
|
||||
certs:
|
||||
image: slocomptech/traefik-cert-extract:latest
|
||||
|
@ -49,6 +53,8 @@ services:
|
|||
volumes:
|
||||
- ./traefik:/data:ro
|
||||
- ./certs:/config/certs
|
||||
logging:
|
||||
driver: none
|
||||
|
||||
networks:
|
||||
traefik:
|
||||
|
|
Loading…
Reference in a new issue