Sign inSign up

eafxx/statping

By eafxx

Updated over 5 years ago

auto-update, multiarch & PUID/PGID support

Image
4

100K+

eafxx/statping repository overview

eafxx/statping

  • PUID/PGID support
  • Multiarch support
  • Updates app on container restart (can disable)

Status Page for monitoring your websites and applications with beautiful graphs, analytics, and plugins. Run on any type of environment.

Docker

Tags

TagDescriptionBuild Status
lateststableDocker Build Master
devdevelopment, pre-releaseDocker Build Dev
expexperimental, unstableDocker Build Exp

Docker Create

docker create \
  --name=statping \
  -v <path to data>:/app \
  -e PGID=<gid> -e PUID=<uid> \
  -e TZ=<timezone> \
  -e SKIPUPDATE='no' \       
  eafxx/statping

OR

Docker Compose

    statping:
        container_name: statping
        image: eafxx/statping
        volumes:
            - <path to data>:/app
        environment:
            - PUID=<uid>
            - PGID=<gid>        
            - TZ=<timezone>
	    - SKIPUPDATE=no

OR

Docker Run

docker run -d --name='Statping' --net='bridge' -e TZ="Europe/London" -e 'PUID'='99' -e 'PGID'='100' -e 'SKIPUPDATE'='no' -e 'VERBOSE'='1' -p '8366:8080/tcp' -v '/mnt/cache/appdata/statping/config':'/app':'rw' 'eafxx/statping' 

Parameters

Container images are configured using parameters passed at runtime (such as those above).

ParameterFunction
-e PUID=99For UserID - see below for explanation
-e PGID=100For GroupID - see below for explanation
-e TZ=Europe/LondonSpecify a timezone to use EG Europe/London
-e SKIPUPDATE=noSkip auto-update of the Statping app on container restarts, options: yes/no, default: no
-e VERBOSE=11-4, display more logs in verbose mode (optional)
-v /appContains all relevant configuration files

User / Group Identifiers

When using volumes (-v flags) permissions issues can arise between the host OS and the container, we avoid this issue by allowing you to specify the user PUID and group PGID.

Ensure any volume directories on the host are owned by the same user you specify and any permissions issues will vanish like magic.

In this instance PUID=1000 and PGID=1000, to find yours use id user as below:

  $ id username
    uid=1000(dockeruser) gid=1000(dockergroup) groups=1000(dockergroup)

Project Source

https://github.com/hunterlong/statping

Tag summary

Content type

Image

Digest

Size

79.4 MB

Last updated

over 5 years ago

docker pull eafxx/statping