Blender

Blender⁠ is a free and open-source 3D computer graphics software toolset used for creating animated films, visual effects, art, 3D printed models, motion graphics, interactive 3D applications, virtual reality, and computer games. This image does not support GPU rendering out of the box only accelerated workspace experience.

Directory Structure

    • .env
    • docker-compose.yml

docker-compose.yml

version: '3.9'
 
services:
  blender:
    image: lscr.io/linuxserver/blender:latest
    container_name: blender
    security_opt:
      - seccomp:unconfined #optional
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Etc/UTC
      - SUBFOLDER=/ #optional
    volumes:
      - /path/to/blender/config:/config
    ports:
      - 3000:3000
      - 3001:3001
    restart: unless-stopped

Resources

Website: https://www.blender.org/

GitHub: https://github.com/blender

Docker Hub (LinuxServer.io): https://hub.docker.com/r/linuxserver/blender

Configuration: https://github.com/linuxserver/docker-blender