Giter Club home page Giter Club logo

docker-zabbix-frontend-php's Introduction

docker-zabbix-frontend-php

A Docker image for Zabbix Web Frontend. Also supports connecting to OpenVPN server.

Run the container

CONTAINER="mysql-data" && sudo docker run \
  --name "${CONTAINER}" \
  -h "${CONTAINER}" \
  -v /mysql \
  --entrypoint /bin/echo \
  dockerizedrupal/mysql:1.1.0 "Data-only container for MySQL."

CONTAINER="mysql" && sudo docker run \
  --name "${CONTAINER}" \
  -h "${CONTAINER}" \
  --volumes-from mysql-data \
  -d \
  dockerizedrupal/mysql:1.1.0

CONTAINER="zabbix-server" && sudo docker run \
  --name "${CONTAINER}" \
  -h "${CONTAINER}" \
  --link mysql:mysql \
  -d \
  dockerizedrupal/zabbix-server:0.1.5

CONTAINER="zabbix-frontend-php-data" && sudo docker run \
  --name "${CONTAINER}" \
  -h "${CONTAINER}" \
  -v /zabbix_frontend_php \
  --entrypoint /bin/echo \
  dockerizedrupal/zabbix-frontend-php:0.1.7 "Data-only container for Zabbix Web Frontend."

CONTAINER="zabbix-frontend-php" && sudo docker run \
  --name "${CONTAINER}" \
  -h "${CONTAINER}" \
  -p 80:80 \
  -p 443:443 \
  --volumes-from zabbix-frontend-php-data \
  --link mysql:mysql \
  --link zabbix-server:zabbix-server \
  -d \
  dockerizedrupal/zabbix-frontend-php:0.1.7

Build the image

TMP="$(mktemp -d)" \
  && git clone https://github.com/dockerizedrupal/docker-zabbix-frontend-php.git "${TMP}" \
  && cd "${TMP}" \
  && git checkout 0.1.7 \
  && sudo docker build -t dockerizedrupal/zabbix-frontend-php:0.1.7 . \
  && cd -

Changing the container behaviour on runtime through environment variables

// TODO

License

MIT

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.