From 8d64a714654f39edd443a897a93c38c6ed7bce6a Mon Sep 17 00:00:00 2001 From: <> Date: Sun, 29 Sep 2024 15:00:55 +0000 Subject: [PATCH] Deployed 29d61d1c with MkDocs version: 1.6.1 --- images/docker-bambustudio/index.html | 6 +++--- images/docker-shotcut/index.html | 2 +- search/search_index.json | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/images/docker-bambustudio/index.html b/images/docker-bambustudio/index.html index 2b5ca95320..604fc1e725 100644 --- a/images/docker-bambustudio/index.html +++ b/images/docker-bambustudio/index.html @@ -14,7 +14,7 @@ - TZ=Etc/UTC - DARK_MODE=true #optional volumes: - - /path/to/config:/config + - /path/to/bambustudio/config:/config ports: - 3000:3000 - 3001:3001 @@ -28,7 +28,7 @@ -e DARK_MODE=true `#optional` \ -p 3000:3000 \ -p 3001:3001 \ - -v /path/to/config:/config \ + -v /path/to/bambustudio/config:/config \ --restart unless-stopped \ lscr.io/linuxserver/bambustudio:latest
Containers are configured using parameters passed at runtime (such as those above). These parameters are separated by a colon and indicate <external>:<internal>
respectively. For example, -p 8080:80
would expose port 80
from inside the container to be accessible from the host's IP on port 8080
outside the container.
-p
)¶Parameter | Function |
---|---|
3000 | Bambu Studio desktop gui. |
3001 | Bambu Studio desktop gui HTTPS. |
-e
)¶Env | Function |
---|---|
PUID=1000 | for UserID - see below for explanation |
PGID=1000 | for GroupID - see below for explanation |
TZ=Etc/UTC | specify a timezone to use, see this list. |
DARK_MODE=true | Set this to true to enable dark mode for Bambu Studio. |
-v
)¶Volume | Function |
---|---|
/config | Users home directory in the container, stores program settings and files. |
Parameter | Function |
---|---|
--security-opt seccomp=unconfined | For Docker Engine only, many modern gui apps need this to function on older hosts as syscalls are unknown to Docker. |
You can set any environment variable from a file by using a special prepend FILE__
.
As an example:
-e FILE__MYVAR=/run/secrets/mysecretvariable
@@ -54,4 +54,4 @@
--pull \
-t lscr.io/linuxserver/bambustudio:latest .
The ARM variants can be built on x86_64 hardware using multiarch/qemu-user-static
Once registered you can define the dockerfile to use with -f Dockerfile.aarch64
.