Used for local or cloud rendering - includes ImageMagick+jp2a to help text logging.
1.1K
Dockerfile links2.78c (2.78c/Dockerfile)2.77a (2.77a/Dockerfile)2.76b (2.76b/Dockerfile)2.75a (2.75a/Dockerfile)2.73a (2.73a/Dockerfile)
Blender is a free and open source 3D animation suite. It supports the entirety of the 3D pipeline—modeling, rigging, animation, simulation, rendering, compositing and motion tracking, even video editing and game creation. Advanced users employ Blender’s API for Python scripting to customize the application and write specialized tools; often these are included in Blender’s future releases. Blender is well suited to individuals and small studios who benefit from its unified pipeline and responsive development process.
This image is intended to be used as a command line, render-only node for .blend files. You will need to create the 3D files beforehand using Blender's full GUI or download one from the many Blender file sharing sites like Blend Swap.
You can use the /media/ directory to mount a volume with source files. The following example mounts the current working directory (-v), sets the image's working directory as that mount (-w) and uses the local user's uid/gid to ensure that file permissions are handled correctly (-u).
`docker run -it -v "$(pwd):/media" -w "/media" -u "$(id -u):$(id -g)"
To render a single frame from a blendfile.blend file located in /source/path on the docker host and save the result in the same directory:
$ docker run --rm -v /source/path/:/media/ \
-u "$(id -u):$(id -g)" \
eparker05/blender:2.78c \
blender -b /media/blendfile.blend -o /media/frame_### -f 1
This will create a file named frame_001.png in the same directory as the source file, assuming that PNG is the default output format for that file.
For additional information on Blender's command line parameters and options please visit the command line reference in the Blender Reference Manual.
This project is released under the MIT license. Please see the LICENSE file for details.
Content type
Image
Digest
Size
265.3 MB
Last updated
almost 9 years ago
docker pull eparker05/blender