-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathdocker-compose.yml
46 lines (41 loc) · 1.92 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
services:
octoeverywhere-bambu-connect:
image: octoeverywhere/octoeverywhere:latest
environment:
# https://octoeverywhere.com/s/bambu-sn
- SERIAL_NUMBER=XXXXXXXXXXXXXXX
# Find using the printer's display or use https://octoeverywhere.com/s/bambu-ip
- PRINTER_IP=XXX.XXX.XXX.XXX
# ~~~ If connecting with Bambu Cloud Mode ~~~
# https://octoeverywhere.com/s/bambu-setup
- BAMBU_CLOUD_ACCOUNT_EMAIL=XXXXXXXX
- BAMBU_CLOUD_ACCOUNT_PASSWORD=XXXXXXXX
#- BAMBU_CLOUD_REGION=china # Optional, use if your Bambu account is in the China region
# ~~~ OR If connecting with LAN Only Mode ~~~
# https://octoeverywhere.com/s/access-code
# - ACCESS_CODE=XXXXXXXX
# - LAN_ONLY_MODE=TRUE
volumes:
# Specify a path mapping for the required persistent storage
# This can also be an absolue path, e.g. /var/octoeverywhere/plugin/data or /c/users/name/plugin/data
- ./data:/data
# Add as many printers as you want! Just make the name `octoeverywhere-bambu-connect` unique!
# octoeverywhere-bambu-connect-2:
# image: octoeverywhere/octoeverywhere:latest
# environment:
# # https://octoeverywhere.com/s/bambu-sn
# - SERIAL_NUMBER=XXXXXXXXXXXXXXX
# # Find using the printer's display or use https://octoeverywhere.com/s/bambu-ip
# - PRINTER_IP=XXX.XXX.XXX.XXX
# # ~~~ If connecting with Bambu Cloud Mode ~~~
# # https://octoeverywhere.com/s/bambu-setup
# - BAMBU_CLOUD_ACCOUNT_EMAIL=XXXXXXXX
# - BAMBU_CLOUD_ACCOUNT_PASSWORD=XXXXXXXX
# #- BAMBU_CLOUD_REGION=china # Optional, use if your Bambu account is in the China region
# # ~~~ OR If connecting with LAN Only Mode ~~~
# # https://octoeverywhere.com/s/access-code
# # - ACCESS_CODE=XXXXXXXX
# # - LAN_ONLY_MODE=TRUE
# volumes:
# # Specify a path mapping for the required persistent storage
# - ./data:/data