Docker container for generating MADE reports from specified directories.
docker pull ghcr.io/leds-conectafapes/leds-tools-made-docker:main
- Create a
directories.json
file:
[
{
"path": "./example/",
"webhook": "xxxxx"
}
]
- Create a
docker-compose.yml
:
version: '3.8'
services:
made-report:
image: ghcr.io/leds-conectafapes/leds-tools-made-docker:main
environment:
JSON_FILE_PATH: /app/config/directories.json
volumes:
- ./config:/app/config
- /path/to/your/files:/host
- Start the container:
docker-compose up
- The tool will:
- Read paths from your JSON file
- Map them to container paths
- Generate reports for each directory
/app/config
: Configuration directory containing your JSON file/host
: Base directory for your source files
JSON_FILE_PATH
: Path to your directories configuration file inside container
.
├── config/
│ └── directories.json
└── docker-compose.yml
- Paths in
directories.json
should be relative to the/host
mount point - Ensure proper read/write permissions on mounted volumes