Zabbix Company Logo
Changing the Zabbix Logo on the Zabbix Dashboard.
Docker
First find your Zabbix Web Frontend container (zabbix-web-*
) ID:
docker ps
CONTAINER ID IMAGE
ec89d2035d0f zabbix/zabbix-web-nginx-pgsql:alpine-5.0-latest
7b29b6cc9e35 zabbix/zabbix-proxy-mysql:alpine-5.0-latest
9db6a51945c3 zabbix/zabbix-proxy-sqlite3:alpine-5.0-latest
a097920b1796 zabbix/zabbix-agent:alpine-5.0-latest
1185e5a23363 zabbix/zabbix-server-pgsql:alpine-5.0-latest
ce12ba40f44f zabbix/zabbix-java-gateway:alpine-5.0-latest
aaa8b398e498 postgres:latest
Copy the icon-sprite.svg
file to your host system and download it from there:
docker cp ec89d2035d0f:/usr/share/zabbix/assets/img/icon-sprite.svg /opt/docker-zabbix/icon-sprite.svg
Editing the Sprite File
You can use any vector graphic program - like Illustrator or Inkscape - and edit the file. Start by importing your companies logo:
And place it on top of the logo that you want to replace:
Now just copy the edited file back into your container:
docker cp /opt/docker-zabbix/icon-sprite.svg ec89d2035d0f:/usr/share/zabbix/assets/img/icon-sprite.svg