https://github.com/josefdolezal/virtuprint-docker
Docker image for OctoPrint Virtual printer
https://github.com/josefdolezal/virtuprint-docker
docker octoprint virtual-printer
Last synced: about 2 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 8 years ago)
- Default Branch: master
- Last Pushed: 2016-12-26T19:52:44.000Z (over 8 years ago)
- Last Synced: 2025-02-10T18:13:18.296Z (3 months ago)
- Topics: docker, octoprint, virtual-printer
- Size: 3.91 KB
- Stars: 1
- Watchers: 2
- 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).