initial commit

This commit is contained in:
2026-01-24 13:48:00 +01:00
commit a20074360c
5 changed files with 187 additions and 0 deletions

22
docker-compose.yml Normal file
View File

@@ -0,0 +1,22 @@
services:
platformio:
platform: linux/amd64 # Wymuś x86_64 dla pełnej kompatybilności
build:
context: .
platforms:
- linux/amd64
image: pio-project:latest
container_name: pio-project
volumes:
- .:/project
- platformio-cache:/root/.platformio
working_dir: /project
command: pio run
stdin_open: true
tty: true
# UWAGA: Docker Desktop na macOS nie wspiera 'devices' ani USB passthrough
# Do wgrywania używaj lokalnego PlatformIO: pio run --target upload
volumes:
platformio-cache:
driver: local