File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -43,11 +43,12 @@ jobs:
4343 token=$(curl -sX GET \
4444 "https://ghcr.io/token?scope=repository%3Alinuxserver%2Fbambustudio%3Apull" \
4545 | jq -r '.token')
46- digest=$(curl -s \
47- --header "Accept: application/vnd.docker.distribution.manifest.v2+json" \
48- --header "Authorization: Bearer ${token}" \
49- "https://ghcr.io/v2/${image}/manifests/${tag}" \
50- | jq -r '.config.digest')
46+ digest=$(curl -s \
47+ --header "Accept: application/vnd.docker.distribution.manifest.v2+json" \
48+ --header "Accept: application/vnd.oci.image.manifest.v1+json" \
49+ --header "Authorization: Bearer ${token}" \
50+ "https://ghcr.io/v2/${image}/manifests/${tag}" \
51+ | jq -r '.config.digest')
5152 image_info=$(curl -sL \
5253 --header "Authorization: Bearer ${token}" \
5354 "https://ghcr.io/v2/${image}/blobs/${digest}")
Original file line number Diff line number Diff line change @@ -189,11 +189,13 @@ It is possible to install extra packages during container start using [universal
189189 - INSTALL_PACKAGES=libfuse2|git|gdb
190190` ` `
191191
192-
193192## Usage
194193
195194To help you get started creating a container from this image you can either use docker-compose or the docker cli.
196195
196+ >[!NOTE]
197+ >Unless a parameter is flaged as 'optional', it is *mandatory* and a value must be provided.
198+
197199### docker-compose (recommended, [click here for more info](https://docs.linuxserver.io/general/docker-compose))
198200
199201` ` ` yaml
@@ -240,8 +242,8 @@ Containers are configured using parameters passed at runtime (such as those abov
240242
241243| Parameter | Function |
242244| :----: | --- |
243- | ` -p 3000 ` | Bambu Studio desktop gui. |
244- | ` -p 3001 ` | Bambu Studio desktop gui HTTPS. |
245+ | ` -p 3000:3000 ` | Bambu Studio desktop gui. |
246+ | ` -p 3001:3001 ` | Bambu Studio desktop gui HTTPS. |
245247| ` -e PUID=1000 ` | for UserID - see below for explanation |
246248| ` -e PGID=1000 ` | for GroupID - see below for explanation |
247249| ` -e TZ=Etc/UTC ` | specify a timezone to use, see this [ list] ( https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List ) . |
You can’t perform that action at this time.
0 commit comments