mirror of
https://github.com/okxlin/appstore.git
synced 2025-07-14 21:32:18 +08:00
21 lines
448 B
YAML
21 lines
448 B
YAML
version: "3"
|
|
services:
|
|
zabbix-agent:
|
|
container_name: ${CONTAINER_NAME}
|
|
restart: always
|
|
networks:
|
|
- 1panel-network
|
|
ports:
|
|
- "${PANEL_APP_PORT_HTTP}:10050"
|
|
environment:
|
|
- ZBX_HOSTNAME=${HOSTNAME}
|
|
- ZBX_SERVER_HOST=${ZABBIX_SERVER}
|
|
- ZBX_SERVER_PORT=${ZABBIX_SERVER_PORT}
|
|
image: zabbix/zabbix-agent:alpine-latest
|
|
labels:
|
|
createdBy: Apps
|
|
|
|
networks:
|
|
1panel-network:
|
|
external: true
|