I have an Ubuntu 20.04 LTS VM running Docker container versions of Zabbix 6.4.1.
When I run `git pull`, it complains about commit changes. To resolve this, I run `git stash` since I'm not managing the repository and I'm unsure why it's complaining. After stashing, I run `git pull` again and see a list of versions, including 6.4.14.
If I run `git checkout 6.4` followed by `docker-compose -f ./docker-compose_v3_alpine_mysql_latest.yaml up -d`, it rebuilds the images, but the Zabbix Web GUI still shows version 6.4.1.
I'm following the procedures listed in the [Zabbix documentation guide](https://www.zabbix.com/documentation...ade/containers).
I noticed that the Zabbix Docker images were installed using the Alpine compose file instead of the Ubuntu compose file. Could this be causing an issue?
Here are the outputs of the Docker inspect commands:
```bash
docker inspect -f '{{ .Config.Image }}' zabbix-docker-zabbix-server-1
# Output: zabbix/zabbix-server-mysql:alpine-6.4-latest
docker inspect -f '{{ .Config.Image }}' zabbix-docker-zabbix-web-nginx-mysql-1
# Output: zabbix/zabbix-web-nginx-mysql:alpine-6.4-latest
docker inspect -f '{{ .Config.Image }}' zabbix-docker-mysql-server-1
# Output: mysql:8.0-oracle
```
Does the `-latest` tag not include the latest build of 6.4?
Managing this software inside a Docker image seems challenging. I feel like `apt-get` would manage this package and its dependencies better. Just running `apt-get update` and `apt-get upgrade` to patch Ubuntu and its packages seems to break this Zabbix Docker install.
Are most of you not using Docker images?
When I run `git pull`, it complains about commit changes. To resolve this, I run `git stash` since I'm not managing the repository and I'm unsure why it's complaining. After stashing, I run `git pull` again and see a list of versions, including 6.4.14.
If I run `git checkout 6.4` followed by `docker-compose -f ./docker-compose_v3_alpine_mysql_latest.yaml up -d`, it rebuilds the images, but the Zabbix Web GUI still shows version 6.4.1.
I'm following the procedures listed in the [Zabbix documentation guide](https://www.zabbix.com/documentation...ade/containers).
I noticed that the Zabbix Docker images were installed using the Alpine compose file instead of the Ubuntu compose file. Could this be causing an issue?
Here are the outputs of the Docker inspect commands:
```bash
docker inspect -f '{{ .Config.Image }}' zabbix-docker-zabbix-server-1
# Output: zabbix/zabbix-server-mysql:alpine-6.4-latest
docker inspect -f '{{ .Config.Image }}' zabbix-docker-zabbix-web-nginx-mysql-1
# Output: zabbix/zabbix-web-nginx-mysql:alpine-6.4-latest
docker inspect -f '{{ .Config.Image }}' zabbix-docker-mysql-server-1
# Output: mysql:8.0-oracle
```
Does the `-latest` tag not include the latest build of 6.4?
Managing this software inside a Docker image seems challenging. I feel like `apt-get` would manage this package and its dependencies better. Just running `apt-get update` and `apt-get upgrade` to patch Ubuntu and its packages seems to break this Zabbix Docker install.
Are most of you not using Docker images?
Comment