Sign inSign up

yoanbernabeu/cronify

By yoanbernabeu

Updated over 4 years ago

Simply monitor your Cron

Image
3

1.2K

yoanbernabeu/cronify repository overview

Cronify

Simply monitor your Cron

Getting Started

These instructions will cover usage information and for the docker container

Prerequisities

In order to run this container you'll need docker installed.

Lunch Cronify?

We offer you a quick method to test the application with the use of a preconfigured Docker container.

Create a docker-compose.yml
version: '3'

services:
  database:
    image: postgres:${POSTGRES_VERSION:-13}-alpine
    environment:
      POSTGRES_DB: ${POSTGRES_DB:-app}
      POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-ChangeMe}
      POSTGRES_USER: ${POSTGRES_USER:-symfony}
    volumes:
      - db-data:/var/lib/postgresql/data:rw

  app:
    image: yoanbernabeu/cronify:latest
    ports:
      - "8080:80"
    environment:
      DATABASE_URL: postgres://${POSTGRES_USER:-symfony}:${POSTGRES_PASSWORD:-ChangeMe}@database:5432/${POSTGRES_DB:-app}

volumes:
  db-data:
Start containers
docker-compose up -d
Launch your browser and have fun !

Find Us

Authors

License

This project is licensed under the MIT License - see the LICENSE.md file for details.

Tag summary

Content type

Image

Digest

Size

353.2 MB

Last updated

over 4 years ago

docker pull yoanbernabeu/cronify