mirror of
https://gitee.com/kennylee/docker.git
synced 2024-11-29 18:38:34 +08:00
21 lines
512 B
YAML
21 lines
512 B
YAML
version: '2'
|
|
services:
|
|
promtail:
|
|
image: registry.cn-hangzhou.aliyuncs.com/kennylee/promtail:2.2.1
|
|
container_name: promtail
|
|
restart: on-failure
|
|
command: '-config.file=/promtail/config/promtail-config.yaml'
|
|
ports:
|
|
- 9080
|
|
extra_hosts:
|
|
- "k8s.foo.com:${LOKI_ADDR}"
|
|
volumes:
|
|
- ./config:/promtail/config:z
|
|
# 用于测试,读取的日志
|
|
- ./logs:/tmp/logs
|
|
logging:
|
|
driver: 'json-file'
|
|
options:
|
|
max-size: '10m'
|
|
max-file: '1'
|