30 lines
1.3 KiB
YAML
30 lines
1.3 KiB
YAML
services:
|
|
manyfold:
|
|
image: ghcr.io/manyfold3d/manyfold-solo:latest
|
|
ports:
|
|
- 3214:3214
|
|
volumes:
|
|
# Uncomment to add a volume where a database file should be created.
|
|
# Don't change the part after the colon, it needs to be at /config
|
|
- /DockerVol/manyfold/config:/config
|
|
# Uncomment to add a filesystem volume for your model library (or multiple if
|
|
# you want multiple libraries), in the form <local_path>:<container_path>.
|
|
# The local path could be a folder that already contains models, in which case Manyfold
|
|
# will scan and import them, or it could be empty.
|
|
# The container path can be anything; you will need to enter it in the "new library" form.
|
|
- /DockerVol/manyfold/models:/models
|
|
environment:
|
|
SECRET_KEY_BASE: adfagsfgasglafbj[r8gqr0jifspfjbi0t8uhjtrwbq]-bjkq-]b9gbirthhpojh
|
|
PUID: 1000
|
|
PGID: 1000
|
|
# For details of other optional environment variables, including features such
|
|
# as multiuser mode, visit https://manyfold.app/sysadmin/configuration.html
|
|
restart: unless-stopped
|
|
# Optional, but recommended for better security
|
|
# security_opt:
|
|
# - no-new-privileges:true
|
|
deploy:
|
|
placement:
|
|
constraints:
|
|
- node.hostname == znas
|
|
|