docs: fix volume paths in moonraker examples

This commit is contained in:
Markus Küffner
2023-12-06 22:54:32 +01:00
parent 342247e5e2
commit c0bac1e729
2 changed files with 3 additions and 2 deletions

View File

@@ -9,6 +9,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
### Added
- docs: add notes about CANBUS
### Fixed
- docs: fix volume paths in moonraker examples #102
### Changed
- docker: pin base images to python:3.11-(slim-)bookworm
- extra: simplify moonraker-timelapse setup

View File

@@ -16,13 +16,13 @@ Create `moonraker.conf` and `printer.cfg` as well as the directories `run` and `
docker run \
--privileged \
-v /dev:/dev \
-v $(pwd)/run:/printer_data/run \
-v $(pwd)/run:/opt/printer_data/run \
-v $(pwd)/gcode:/opt/printer_data/gcodes \
-v $(pwd)/printer.cfg:/opt/printer_data/config/printer.cfg \
mkuf/klipper:latest
docker run \
-v $(pwd)/run:/printer_data/run \
-v $(pwd)/run:/opt/printer_data/run \
-v $(pwd)/gcode:/opt/printer_data/gcodes \
-v $(pwd)/moonraker.conf:/opt/printer_data/config/moonraker.conf \
-p 7125:7125 \