fork of https://github.com/bpodwinski/docker-phpservermon

@Benoit Podwinski Benoit Podwinski authored on 23 Apr 2018
Dockerfile Dockerfile: Fix checked-out branch 5 years ago
README.md Cron up to 300s (5min) by default 6 years ago
docker-entrypoint.sh fix 6 years ago
nginx.conf Init 6 years ago
php.ini fix 5 years ago
supervisord.conf Init 6 years ago
update_status.sh Cron up to 300s (5min) by default 6 years ago
README.md

Supported tags and respective Dockerfile links

stable (bpodwinski/docker-phpservermon)

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.1

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 256M
MAX_UPLOAD optional 128M
UPDATE_INTERVAL optional 300

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