├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── v3.0.4 ├── Makefile └── docker-compose.yml ├── v3.2.6 ├── Makefile └── docker-compose.yml ├── v3.4.7 ├── Makefile └── docker-compose.yml ├── v3.4.9 ├── Makefile └── docker-compose.yml └── v4.0.5 ├── Makefile └── docker-compose.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chusiang/zabbix.dockerize/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chusiang/zabbix.dockerize/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chusiang/zabbix.dockerize/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chusiang/zabbix.dockerize/HEAD/README.md -------------------------------------------------------------------------------- /v3.0.4/Makefile: -------------------------------------------------------------------------------- 1 | ../Makefile -------------------------------------------------------------------------------- /v3.0.4/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chusiang/zabbix.dockerize/HEAD/v3.0.4/docker-compose.yml -------------------------------------------------------------------------------- /v3.2.6/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chusiang/zabbix.dockerize/HEAD/v3.2.6/Makefile -------------------------------------------------------------------------------- /v3.2.6/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chusiang/zabbix.dockerize/HEAD/v3.2.6/docker-compose.yml -------------------------------------------------------------------------------- /v3.4.7/Makefile: -------------------------------------------------------------------------------- 1 | ../Makefile -------------------------------------------------------------------------------- /v3.4.7/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chusiang/zabbix.dockerize/HEAD/v3.4.7/docker-compose.yml -------------------------------------------------------------------------------- /v3.4.9/Makefile: -------------------------------------------------------------------------------- 1 | ../Makefile -------------------------------------------------------------------------------- /v3.4.9/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chusiang/zabbix.dockerize/HEAD/v3.4.9/docker-compose.yml -------------------------------------------------------------------------------- /v4.0.5/Makefile: -------------------------------------------------------------------------------- 1 | ../Makefile -------------------------------------------------------------------------------- /v4.0.5/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chusiang/zabbix.dockerize/HEAD/v4.0.5/docker-compose.yml --------------------------------------------------------------------------------