version: '3.8' services: python-cron-job: build: . container_name: python-cron-job restart: unless-stopped volumes: - ./app:/usr/src/app # Mount your local app directory to the container environment: - TZ=UTC # Set the timezone (you can adjust this as needed) logging: options: max-size: "10m" max-file: "3" env_file: ".env"