[add] blender

This commit is contained in:
Andy Bunce 2022-11-29 16:10:15 +00:00
parent d2c067fc1a
commit 895a8b9455
3 changed files with 29 additions and 24 deletions

8
blender/config/.gitignore vendored Normal file
View file

@ -0,0 +1,8 @@
# .gitignore sample
###################
# Ignore all files in this dir...
*
# ... except for this one.
!.gitignore

View file

@ -0,0 +1,21 @@
---
version: "2.1"
services:
blender:
image: lscr.io/linuxserver/blender:latest
container_name: blender
security_opt:
- seccomp:unconfined #optional
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/London
- SUBFOLDER=/ #optional
- KEYBOARD=en-us-qwerty #optional
volumes:
- ./config:/config
ports:
- 3000:3000
devices:
- /dev/dri:/dev/dri #optional
restart: unless-stopped