[add] blender
This commit is contained in:
parent
d2c067fc1a
commit
895a8b9455
3 changed files with 29 additions and 24 deletions
8
blender/config/.gitignore
vendored
Normal file
8
blender/config/.gitignore
vendored
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
# .gitignore sample
|
||||
###################
|
||||
|
||||
# Ignore all files in this dir...
|
||||
*
|
||||
|
||||
# ... except for this one.
|
||||
!.gitignore
|
||||
21
blender/docker-compose.yml
Normal file
21
blender/docker-compose.yml
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue