29 lines
572 B
YAML
29 lines
572 B
YAML
version: "3.7"
|
|
|
|
services:
|
|
zabbix:
|
|
image: harbor.colben.cn/general/zabbix
|
|
container_name: zabbix
|
|
restart: "on-failure"
|
|
stop_grace_period: 1m
|
|
ports:
|
|
- 80:80
|
|
- 10051:10051
|
|
volumes:
|
|
- type: bind
|
|
source: ./mysql/db
|
|
target: /var/lib/mysql
|
|
- type: bind
|
|
source: ./mysql/log
|
|
target: /var/log/mysql
|
|
- type: bind
|
|
source: ./php7/log
|
|
target: /var/log/php7
|
|
- type: bind
|
|
source: ./nginx/log
|
|
target: /var/log/nginx
|
|
- type: bind
|
|
source: ./zabbix/log
|
|
target: /var/log/zabbix
|
|
|