Paolo Asperti
febac4d60f
All checks were successful
continuous-integration/drone/push Build is passing
|
||
---|---|---|
docker | ||
.drone.yaml | ||
.gitignore | ||
LICENSE | ||
README.md |
docker-python-runner
Base docker container for running python scripts.
usage
version: '3.6'
services:
runner:
image: docker.asperti.com/paspo/python-runner:latest
container_name: python-scripts
restart: unless-stopped
volumes:
- ./scripts:/scripts
- ./logs:/var/log
environment:
TZ: Europe/Rome
CRONTAB: >
*/5 7-22 * * * /scripts/test.py
*/10 7-22 * * * /scripts/test2.py
mkdir scripts logs
touch scripts/test.py && chmod +x scripts/test.py
touch scripts/test2.py && chmod +x scripts/test2.py
docker-compose up -d