mirror of
https://github.com/dimalo/klipper-web-control-docker.git
synced 2026-02-06 14:29:09 +01:00
- BREAKING CHANGE: make printer.cfg the main config file, instead of klipper.cfg. existing configs need to be migrated: - copy all include statements from klipper.cfg to printer.cfg - remove klipper.cfg - add run_in_venv script to activate venv correctly, then start klipper/moonraker - add rpi_mcu config file and include in printer.cfg - add cap_add: SYS_NICE to docker-compose to run klipper_mcu - build & run klipper with python3 - precompile klipper C-Code in build stage, remove gcc from run image (https://www.klipper3d.org/Packaging.html) - remove python3 debian packages, globally install with pip instead
11 lines
232 B
INI
11 lines
232 B
INI
[program:klipper_mcu]
|
|
user=root
|
|
command=/usr/local/bin/klipper_mcu -r
|
|
stdout_logfile=/dev/fd/1
|
|
stdout_logfile_maxbytes = 0
|
|
stderr_logfile=/dev/fd/2
|
|
stderr_logfile_maxbytes = 0
|
|
autorestart=true
|
|
autostart=false
|
|
dependent_startup=true
|