mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-14 18:12:47 +00:00
18 lines
907 B
Bash
18 lines
907 B
Bash
# [Bambu Studio](https://bambulab.com/en/download/studio) Bambu Studio is an
|
|
# open-source, cutting-edge, feature-rich slicing software. It contains project-
|
|
# based workflows, systematically optimized slicing algorithms, and an easy-to-
|
|
# use graphical interface, bringing users an incredibly smooth printing
|
|
# experience.
|
|
|
|
. ./.env
|
|
docker run -d \
|
|
--name=bambustudio \
|
|
-e PUID=${PUID:-1024} `# for UserID` \
|
|
-e PGID=${PGID:-100} `# for GroupID` \
|
|
-e TZ=${TZ:-Europe/Amsterdam} `# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).` \
|
|
-p 3000:3000 `# Bambu Studio desktop gui.` \
|
|
-p 3001:3001 `# Bambu Studio desktop gui HTTPS.` \
|
|
-v ${BASEDIR:-/volume1/docker}/bambustudio/config:/config `# Users home directory in the container, stores program settings and files.` \
|
|
--restart unless-stopped \
|
|
ghcr.io/linuxserver/bambustudio
|