https://github.com/josefdolezal/virtuprint-docker
Docker image for OctoPrint Virtual printer
https://github.com/josefdolezal/virtuprint-docker
docker octoprint virtual-printer
Last synced: 8 months ago
JSON representation
Docker image for OctoPrint Virtual printer
- Host: GitHub
- URL: https://github.com/josefdolezal/virtuprint-docker
- Owner: josefdolezal
- License: mit
- Created: 2016-12-05T16:02:18.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-12-26T19:52:44.000Z (over 9 years ago)
- Last Synced: 2025-04-05T09:14:25.559Z (about 1 year ago)
- Topics: docker, octoprint, virtual-printer
- Size: 3.91 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# OctoPrint Virtual printer
Sometimes you need to test your OctoPrint plugin, API client or whatever you are building with virtual printer. This docker image contains clean install of OctoPrint 1.2.13. *On first run* you will be asked for new password.
# Usage
Depends on your needs, you can build image yourself or use prebuilt. Prebuilt image is automated build. In both cases, demonstrated use cases runs on port `3200`.
## Build it
This repository contains Dockerfile which allows you to build image on your own with following command:
```
docker build -t virtuprint .
```
This builds new image named `virtuprint`. To create new container from this image, run:
```
docker run --rm --name myoctoprint -p3200:5000 virtuprint
```
Docker creted new container
## Prebuilt
If you are not interested in modifing Dockerfile or just more comfortable with pulling image, you can simply run:
```
docker run --rm --name myoctoprint -p3200:5000 josefdolezal/virtuprint-docker
```
# License
The VirtuPrint Dockerfile is licensed under [MIT](LICENSE).