18 lines
504 B
YAML
18 lines
504 B
YAML
version: "3.9"
|
|
services:
|
|
pipeline-runner:
|
|
build:
|
|
context: .
|
|
dockerfile: pipeline_runner/Dockerfile
|
|
container_name: cosma-pipeline-runner
|
|
ports:
|
|
- "8767:8767"
|
|
volumes:
|
|
- /mnt/nas-cosma/cosma/sorties:/data/sorties
|
|
- /home/floppyrj45/.config/rclone/rclone.conf:/root/.config/rclone/rclone.conf:ro
|
|
environment:
|
|
- GDRIVE_REMOTE=cosma:06-Operations/06 - Sorties
|
|
- OUTPUT_DIR=/data/sorties
|
|
- TOOLS_DIR=/app/tools
|
|
restart: unless-stopped
|