Code Monkey home page Code Monkey logo

docker-phpservermon's Introduction

Supported tags and respective Dockerfile links

latest, stable (bpodwinski/docker-phpservermon)
3.4.5 (bpodwinski/docker-phpservermon/3.4.5)
3.3.2 (bpodwinski/docker-phpservermon/3.3.2)
3.3.1 (bpodwinski/docker-phpservermon/3.3.1)
3.3.0 (bpodwinski/docker-phpservermon/3.3.0)

What is this ?

PHP Server Monitor is a script that checks whether your websites and servers are up and running. It comes with a web based user interface where you can manage your services and websites, and you can manage users for each server with a mobile number and email address. official website.

Features

  • Based on Alpine (>50MB!)
  • Latest stable versions
  • With nginx and PHP7

Ports

  • 80

Environment

Variable Type Default value
PSM_BASE_URL required null
PSM_DB_HOST required null
PSM_DB_PORT optional 3306
PSM_DB_NAME required null
PSM_DB_USER required null
PSM_DB_PASS required null
PSM_DB_PREFIX required null
PHP_TIMEZONE optional UTC
PHP_MEMORY_LIMIT optional 512M
MAX_UPLOAD optional 128M
UPDATE_INTERVAL optional 120

Volumes

No volume required!

Example Docker Compose configuration

version: "3"
services:

 db:
  image: mariadb:10
  container_name: phpservermon-mariadb
  hostname: mariadb
  restart: always
  volumes:
   - ./mariadb:/var/lib/mysql
  environment:
   - MYSQL_ROOT_PASSWORD=password
   - MYSQL_DATABASE=phpservermon
   - MYSQL_USER=phpservermon
   - MYSQL_PASSWORD=password

 phpservermon:
  image: benoitpodwinski/phpservermon
  container_name: phpservermon
  hostname: phpservermon
  restart: always
  environment:
   - PSM_BASE_URL=http://website.com/
   - PSM_DB_HOST=db
   - PSM_DB_NAME=phpservermon
   - PSM_DB_USER=phpservermon
   - PSM_DB_PASS=password
   - PSM_DB_PREFIX=Y8ze_
   - PHP_TIMEZONE=Europe/Paris
  depends_on:
   - db
  ports:
   - 80:80

Source

docker-phpservermon's People

Contributors

bpodwinski avatar ocelotsloth avatar

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.