mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-16 12:13:26 +00:00
31 lines
1.1 KiB
YAML
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
|