You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
1.1 KiB
YAML

# [Blender](https://www.blender.org/) 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**
---
version: "2.1"
services:
blender:
image: ghcr.io/linuxserver/blender
container_name: blender
environment:
# for UserID
- PUID=${PUID:-1024}
# for GroupID
- PGID=${PGID:-100}
# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).
- TZ=${TZ:-Europe/Amsterdam}
# Specify a subfolder to use with reverse proxies, IE `/subfolder/`
- SUBFOLDER=/ # optional
volumes:
# Users home directory in the container, stores local files and settings
- ${BASEDIR:-/volume1/docker}/blender/config:/config
ports:
# Blender desktop gui
- 3000:3000
# Blender desktop gui HTTPS
- 3001:3001
restart: unless-stopped