Go to file
Stefan Dej 1634839a3d
chore: add fallback KLIPPER_REPO url in Dockerfile (#39)
2024-09-06 09:50:46 +02:00
.github/workflows ci: update workflow and build the images in PRs without pushing it (#30) 2024-06-11 10:52:28 +02:00
config fix: update avr config so firmware can be compiled again (#23) 2024-02-08 14:08:09 +01:00
example-configs refactor: apply moonraker path changes (#14) 2023-01-07 18:29:43 +01:00
mjpg_streamer_images feat: add dummy webcam streamer (#9) 2022-06-18 15:59:02 +02:00
scripts style: fix indents, add .editorconfig (#36) 2024-08-17 14:34:22 +02:00
.editorconfig style: fix indents, add .editorconfig (#36) 2024-08-17 14:34:22 +02:00
.env.example feat: add support for custom klipper repo urls (#27) 2024-06-11 07:49:16 +02:00
.gitattributes fix: add .gitattributes to force bash scripts to have LF line endings (#35) 2024-07-26 16:09:52 +02:00
.gitignore feat: add support for custom klipper repo urls (#27) 2024-06-11 07:49:16 +02:00
Dockerfile chore: add fallback KLIPPER_REPO url in Dockerfile (#39) 2024-09-06 09:50:46 +02:00
LICENSE Create LICENSE 2022-02-10 22:05:49 +01:00
README.md docs: fix docker compose command in README.md (#31) 2024-06-16 12:03:12 +02:00
docker-compose.yml feat: add support for custom klipper repo urls (#27) 2024-06-11 07:49:16 +02:00

README.md

License

Virtual-Klipper-Printer

Run a simulated Klipper 3D-Printer in a Docker container.


Setup Instructions:

  1. Clone this repository
  2. Open a terminal in the cloned folder
  3. Run docker compose up -d to build the docker image and start the container in detached mode

Configure a Dummy-Webcam:

To configure a dummy-webcam, use the following URLs:

  • Stream: http://localhost:8110/?action=stream
  • Snapshot: http://localhost:8110/?action=snapshot

Common Docker commands:

  • Get all container IDs: docker ps -a
  • Get only the ID of running containers: docker ps
  • Access a containers shell: docker exec -it <CONTAINER ID> bash
  • Start/Restart/Stop a container: docker container start/restart/stop <CONTAINER ID>
  • Rebuild image, recreate and start container : docker compose up -d --build

Current image size: 742.72 MB