Spaces:
Sleeping
Sleeping
File size: 465 Bytes
16decd8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | # Run the whole thing with: docker compose up --build
# Then open http://localhost:8501
services:
commerce-pipeline:
build: .
image: commerce-pipeline:latest
ports:
- "8501:8501"
environment:
# Override any synthetic-data knob here, e.g. a bigger dataset:
# CP_N_ORDERS: "50000"
CP_SEED: "42"
volumes:
# Persist the generated warehouse on the host (optional).
- ./data:/app/data
restart: unless-stopped
|