Go to file
Stefan Dej 97096dc45c
feat: add support for custom klipper repo urls (#27)
2024-06-11 07:49:16 +02:00
.github/workflows ci: remove obsolete context (#6) 2022-03-01 14:28:29 +01: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 fix: required folders were not created (#16) 2023-02-12 10:49:25 +01:00
.env.example feat: add support for custom klipper repo urls (#27) 2024-06-11 07:49:16 +02:00
.gitignore feat: add support for custom klipper repo urls (#27) 2024-06-11 07:49:16 +02:00
Dockerfile feat: add support for custom klipper repo urls (#27) 2024-06-11 07:49:16 +02:00
LICENSE Create LICENSE 2022-02-10 22:05:49 +01:00
README.md chore: remove maintained tag from README.md (#24) 2024-03-06 20:21:47 +01: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