Simply monitor your Cron
These instructions will cover usage information and for the docker container
In order to run this container you'll need docker installed.
We offer you a quick method to test the application with the use of a preconfigured Docker container.
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:
docker-compose up -d
This project is licensed under the MIT License - see the LICENSE.md file for details.
Content type
Image
Digest
Size
353.2 MB
Last updated
over 4 years ago
docker pull yoanbernabeu/cronify