-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Docker appliance is decommissioned #21
Comments
|
I'm not sure how useful this is, but here is a Guix OS definition that produces an all-in-one VM with zac, zabbix-cli, and Zabbix 5.2.3. It assumes that a https://gist.github.com/mbakke/bae11462a5a9c84ea27218f340d14999 (Note: it depends on the guix-uio channel) It can be used with
GNU Guix runs on any distro, but may be a little overkill just for testing zabbix-auto-config... The configuration can be adapted to work with |
I'm not familiar with Guix myself. I have this that works with podman (but it got broken i 2.2.x). I expect that this will work once more in a 2.2.2 or 3.0 release. ---
apiVersion: v1
kind: Pod
metadata:
name: zabbix
spec:
containers:
- image: docker.io/zabbix/zabbix-web-nginx-pgsql:latest
name: zabbix-web-nginx
env:
- name: DB_SERVER_HOST
value: 127.0.0.1
- name: PHP_TZ
value: Europe/Oslo
- name: POSTGRES_DB
value: zabbix
- name: POSTGRES_PASSWORD
value: secret
- name: POSTGRES_USER
value: zabbix
- name: ZBX_SERVER_HOST
value: 127.0.0.1
ports:
- containerPort: 8080
hostPort: 8080
protocol: TCP
- image: docker.io/library/postgres:latest
name: postgres
env:
- name: POSTGRES_DB
value: zabbix
- name: POSTGRES_PASSWORD
value: secret
- name: POSTGRES_USER
value: zabbix
ports:
- containerPort: 5432
hostPort: 5432
protocol: TCP
- image: docker.io/zabbix/zabbix-server-pgsql:latest
name: zabbix-server
env:
- name: DB_SERVER_HOST
value: 127.0.0.1
- name: POSTGRES_DB
value: zabbix
- name: POSTGRES_PASSWORD
value: secret
- name: POSTGRES_USER
value: zabbix
restartPolicy: Never |
https://hub.docker.com/r/zabbix/zabbix-appliance
The "quick start" in the README needs to be updated.
The text was updated successfully, but these errors were encountered: