This a fork of skurtzemann/docker-cheky. It's just a more up to date version.
Automated build using travis CI
Dockerize version of Cheky.
Simply run the docker image and expose the port 80:
$ docker run -d --name=cheky -p 80:80 menardorama/docker-cheky:latest
To persist Cheky configuration you can bind mount a docker volume to /var/www/html/var/.
$ docker run -d --name=cheky -p 80:80 -v <host_cheky_data_dir>:/var/www/html/var/ menardorama/docker-cheky:latestv
Some Cheky settings can be customize with environments variables.
CHEKY_BASEURLSet the Checky base URL.
Example :
CHEKY_BASEURL=http://cheky.example.com
The default base URL is http://cheky.local.
Set the admin password.
admin.The admin password can be set in plain test or with it SHA1 checksum.
CHEKY_ADMIN_PASSWORDSet the password in plain text.
CHEKY_ADMIN_PASSWORD_SHA1Set the password with it SHA1 checksum.
To generate the SHA1 checksum you can use the sha1sum command.
test:$ echo -n "test" | sha1sum | cut -d" " -f1
a94a8fe5ccb19ba61c4c0873d391e987982fbbd3
Configure the mailer for alerts.
CHEKY_CONFIG_MAILERDisable/enable the mailer configuration : 0|1
0.CHEKY_MAILER_SMTP_HOSTSet the SMTP hostname.
CHEKY_MAILER_SMTP_PORTSet the SMTP port.
CHEKY_MAILER_SMTP_USERNAMESet the SMTP username.
CHEKY_MAILER_SMTP_PASSWORDSet the SMTP password.
CHEKY_MAILER_SMTP_SECURESet the SMTP connection security : <empty>|tls|ssl
CHEKY_MAILER_FROMSet the sender email for Cheky alerts.
SMTP configuration example:
CHEKY_MAILER_SMTP_HOST=smtp.mailgun.org
CHEKY_MAILER_SMTP_PORT=587
CHEKY_MAILER_SMTP_USERNAME=xxx
CHEKY_MAILER_SMTP_PASSWORD="yyy"
CHEKY_MAILER_SMTP_SECURE=tls
[email protected]
CHEKY_CRON_INTERVALSet the cron interval for the Cheky check cronjob.
Example :
CHEKY_CRON_INTERVAL="*/5 * * * *"
The default value is */30 * * * *.
Content type
Image
Digest
Size
153.7 MB
Last updated
over 7 years ago
docker pull menardorama/docker-cheky