2025-12-08 12:07:01 +01:00
|
|
|
services:
|
|
|
|
|
kicad-wasm-builder:
|
|
|
|
|
build:
|
|
|
|
|
context: ..
|
|
|
|
|
dockerfile: docker/Dockerfile
|
2026-01-03 07:31:46 +01:00
|
|
|
# Container name is auto-generated with project prefix (set in build.sh)
|
2025-12-08 12:07:01 +01:00
|
|
|
|
2025-12-12 14:51:38 +01:00
|
|
|
# Resource limits (adjust based on your machine)
|
2025-12-08 12:07:01 +01:00
|
|
|
deploy:
|
|
|
|
|
resources:
|
|
|
|
|
limits:
|
|
|
|
|
cpus: '10'
|
2025-12-12 14:51:38 +01:00
|
|
|
memory: 32G
|
2025-12-08 12:07:01 +01:00
|
|
|
|
|
|
|
|
volumes:
|
2025-12-27 01:07:44 +01:00
|
|
|
# Host source mounted read-only at staging location
|
|
|
|
|
# (rsync'd to /workspace on container start to fix macOS timestamp issues)
|
|
|
|
|
- ..:/workspace-host:ro
|
|
|
|
|
# Synced source in Docker volume (consistent timestamps)
|
|
|
|
|
- workspace-src:/workspace
|
2025-12-08 12:07:01 +01:00
|
|
|
# Named volume for build cache (faster than bind mount on macOS)
|
|
|
|
|
- kicad-build-cache:/workspace/build-wasm
|
|
|
|
|
# Output directory for easy access to final WASM files
|
|
|
|
|
- ../output:/workspace/output
|
|
|
|
|
|
|
|
|
|
# Keep container running for interactive use
|
|
|
|
|
stdin_open: true
|
|
|
|
|
tty: true
|
|
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
|
kicad-build-cache:
|
2025-12-27 01:07:44 +01:00
|
|
|
workspace-src:
|